提交 5e5af5b6 编写于 作者: C Carlos Antonio da Silva

Merge pull request #13855 from kuldeepaggarwal/reset_validators

use the new clear_validators! api everywhere to reset validators in tests
......@@ -63,6 +63,6 @@ def test_validates_acceptance_of_for_ruby_class
p.karma = "1"
assert p.valid?
ensure
Person.reset_callbacks(:validate)
Person.clear_validators!
end
end
......@@ -740,7 +740,7 @@ def test_update!
assert_raise(ActiveRecord::RecordInvalid) { reply.update!(title: nil, content: "Have a nice evening") }
ensure
Reply.reset_callbacks(:validate)
Reply.clear_validators!
end
def test_update_attributes!
......@@ -761,7 +761,7 @@ def test_update_attributes!
assert_raise(ActiveRecord::RecordInvalid) { reply.update_attributes!(title: nil, content: "Have a nice evening") }
ensure
Reply.reset_callbacks(:validate)
Reply.clear_validators!
end
def test_destroyed_returns_boolean
......
......@@ -3,7 +3,7 @@
class I18nGenerateMessageValidationTest < ActiveRecord::TestCase
def setup
Topic.reset_callbacks(:validate)
Topic.clear_validators!
@topic = Topic.new
I18n.backend = I18n::Backend::Simple.new
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册