use the new clear_validators! api everywhere to reset validators in tests

This commit is contained in:
Kuldeep Aggarwal 2014-01-28 00:13:35 +05:30
parent d57ce232a8
commit 20317f3d4d
3 changed files with 4 additions and 4 deletions

View File

@ -63,6 +63,6 @@ class AcceptanceValidationTest < ActiveModel::TestCase
p.karma = "1"
assert p.valid?
ensure
Person.reset_callbacks(:validate)
Person.clear_validators!
end
end

View File

@ -740,7 +740,7 @@ class PersistenceTest < ActiveRecord::TestCase
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 @@ class PersistenceTest < ActiveRecord::TestCase
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

View File

@ -3,7 +3,7 @@ require 'models/topic'
class I18nGenerateMessageValidationTest < ActiveRecord::TestCase
def setup
Topic.reset_callbacks(:validate)
Topic.clear_validators!
@topic = Topic.new
I18n.backend = I18n::Backend::Simple.new
end