1
0
Fork 0
mirror of https://github.com/thoughtbot/shoulda-matchers.git synced 2022-11-09 12:01:38 -05:00

README small fixes.

This commit is contained in:
Anton Tsapov 2014-01-20 11:32:29 +02:00 committed by Elliot Winkler
parent 5c5525c852
commit dfce983324

View file

@ -199,7 +199,7 @@ end
# RSpec
describe Issue do
it { should ensure_inclusion_of(:state).in_array(%w(open resolved unresolved))
it { should ensure_inclusion_of(:state).in_array(%w(open resolved unresolved)) }
it { should ensure_inclusion_of(:state).in_range(1..5) }
it do
@ -473,7 +473,7 @@ describe Person do
it do
should validate_numericality_of(:number_of_dependents).
with_message('Number of dependents must be a number' }
with_message('Number of dependents must be a number')
end
end