mirror of https://github.com/rails/rails
Merge pull request #8256 from nalwayaabhishek/master
Displaying error message if validation fail in examples (p tag was missing)
This commit is contained in:
commit
ea0056f52a
|
@ -22,8 +22,8 @@ class Person
|
|||
end
|
||||
|
||||
person1 = Person.new
|
||||
p person1.valid?
|
||||
person1.errors
|
||||
p person1.valid? # => false
|
||||
p person1.errors.messages # => {:name=>["can't be blank"]}
|
||||
|
||||
person2 = Person.new(:name => "matz")
|
||||
p person2.valid?
|
||||
p person2.valid? # => true
|
||||
|
|
Loading…
Reference in New Issue