diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2014-05-11 19:26:56 -0300 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2014-05-11 19:26:56 -0300 |
commit | d4fafeb003e472283914d3246d5aea92a0ea795c (patch) | |
tree | 78ba6bcb0cc4af31d74906f9eb0b3f0b7dbe3e11 /activerecord | |
parent | d1f7d76dfd0a907c59bfe495de7ac2cf36d71678 (diff) | |
parent | 05746fe14f8fbabd56d34b367d1bcaa268f3710c (diff) | |
download | rails-d4fafeb003e472283914d3246d5aea92a0ea795c.tar.gz rails-d4fafeb003e472283914d3246d5aea92a0ea795c.tar.bz2 rails-d4fafeb003e472283914d3246d5aea92a0ea795c.zip |
Merge pull request #10662 from take/change-test-name-for-ActiveRecord--Validations#valid-
Refactor AR's validations_test.rb
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/test/cases/validations_test.rb | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/activerecord/test/cases/validations_test.rb b/activerecord/test/cases/validations_test.rb index d80da06e27..a6e1dc72e5 100644 --- a/activerecord/test/cases/validations_test.rb +++ b/activerecord/test/cases/validations_test.rb @@ -14,28 +14,28 @@ class ValidationsTest < ActiveRecord::TestCase # Other classes we mess with will be dealt with in the specific tests repair_validations(Topic) - def test_error_on_create + def test_valid_uses_create_context_when_new r = WrongReply.new r.title = "Wrong Create" - assert !r.save + assert_not r.valid? assert r.errors[:title].any?, "A reply with a bad title should mark that attribute as invalid" assert_equal ["is Wrong Create"], r.errors[:title], "A reply with a bad content should contain an error" end - def test_error_on_update + def test_valid_uses_update_context_when_persisted r = WrongReply.new r.title = "Bad" r.content = "Good" - assert r.save, "First save should be successful" + assert r.save, "First validation should be successful" r.title = "Wrong Update" - assert !r.save, "Second save should fail" + assert_not r.valid?, "Second validation should fail" assert r.errors[:title].any?, "A reply with a bad title should mark that attribute as invalid" assert_equal ["is Wrong Update"], r.errors[:title], "A reply with a bad content should contain an error" end - def test_error_on_given_context + def test_valid_using_special_context r = WrongReply.new(:title => "Valid title") assert !r.valid?(:special_case) assert_equal "Invalid", r.errors[:author_name].join @@ -45,11 +45,11 @@ class ValidationsTest < ActiveRecord::TestCase assert r.valid?(:special_case) r.author_name = nil - assert !r.save(:context => :special_case) + assert_not r.valid?(:special_case) assert_equal "Invalid", r.errors[:author_name].join r.author_name = "secret" - assert r.save(:context => :special_case) + assert r.valid?(:special_case) end def test_validate @@ -100,7 +100,7 @@ class ValidationsTest < ActiveRecord::TestCase end end - def test_create_without_validation + def test_save_without_validation reply = WrongReply.new assert !reply.save assert reply.save(:validate => false) |