1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Missing repair_validations

This commit is contained in:
Akira Matsuda 2013-01-09 11:07:37 +09:00
parent f667f0f7ee
commit 59e2630ca7

View file

@ -108,6 +108,7 @@ module ActiveRecord
end end
def test_dup_validity_is_independent def test_dup_validity_is_independent
repair_validations(Topic) do
Topic.validates_presence_of :title Topic.validates_presence_of :title
topic = Topic.new("title" => "Litterature") topic = Topic.new("title" => "Litterature")
topic.valid? topic.valid?
@ -123,3 +124,4 @@ module ActiveRecord
end end
end end
end end
end