Simplify testing array contents
We were testing for the size and the content of the elements when we could test for the array itself.
This commit is contained in:
@@ -24,8 +24,7 @@ describe Verification::Residence do
|
||||
|
||||
residence.postal_code = "13280"
|
||||
residence.valid?
|
||||
expect(residence.errors[:postal_code].size).to eq(1)
|
||||
expect(residence.errors[:postal_code]).to include("In order to be verified, you must be registered.")
|
||||
expect(residence.errors[:postal_code]).to eq ["In order to be verified, you must be registered."]
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user