diff options
| author | Yves Senn <yves.senn@gmail.com> | 2013-11-29 05:23:30 -0800 |
|---|---|---|
| committer | Yves Senn <yves.senn@gmail.com> | 2013-11-29 05:23:30 -0800 |
| commit | 0322b6a835297741c47200aab3f1364d78d4aaa3 (patch) | |
| tree | 747767c24477c72b779ee06e93b78f6166d9e99f /activerecord/test | |
| parent | 2f513144f7d538ba154f4f28d5a93bb25d9bc384 (diff) | |
| parent | 647cff3a134772bc6374b89e95d13497e23b5309 (diff) | |
| download | rails-0322b6a835297741c47200aab3f1364d78d4aaa3.tar.gz rails-0322b6a835297741c47200aab3f1364d78d4aaa3.tar.bz2 rails-0322b6a835297741c47200aab3f1364d78d4aaa3.zip | |
Merge pull request #13095 from kuldeepaggarwal/test-case-updation
removed unnecessary test case
Diffstat (limited to 'activerecord/test')
| -rw-r--r-- | activerecord/test/cases/associations/belongs_to_associations_test.rb | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/activerecord/test/cases/associations/belongs_to_associations_test.rb b/activerecord/test/cases/associations/belongs_to_associations_test.rb index a79f145e31..7c913bc78b 100644 --- a/activerecord/test/cases/associations/belongs_to_associations_test.rb +++ b/activerecord/test/cases/associations/belongs_to_associations_test.rb @@ -619,16 +619,11 @@ class BelongsToAssociationsTest < ActiveRecord::TestCase assert_equal [author_address.id], AuthorAddress.destroyed_author_address_ids end - def test_invalid_belongs_to_dependent_option_nullify_raises_exception - assert_raise ArgumentError do + def test_belongs_to_invalid_dependent_option_raises_exception + error = assert_raise ArgumentError do Class.new(Author).belongs_to :special_author_address, :dependent => :nullify end - end - - def test_invalid_belongs_to_dependent_option_restrict_raises_exception - assert_raise ArgumentError do - Class.new(Author).belongs_to :special_author_address, :dependent => :restrict - end + assert_equal error.message, 'The :dependent option must be one of [:destroy, :delete], but is :nullify' end def test_attributes_are_being_set_when_initialized_from_belongs_to_association_with_where_clause |
