mirror of https://github.com/rails/rails
use the new clear_validators! api everywhere to reset validators in tests
This commit is contained in:
parent
d57ce232a8
commit
20317f3d4d
|
@ -63,6 +63,6 @@ class AcceptanceValidationTest < ActiveModel::TestCase
|
|||
p.karma = "1"
|
||||
assert p.valid?
|
||||
ensure
|
||||
Person.reset_callbacks(:validate)
|
||||
Person.clear_validators!
|
||||
end
|
||||
end
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue