aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations
diff options
context:
space:
mode:
authorEmilio Tagua <miloops@gmail.com>2009-08-10 18:19:24 -0300
committerEmilio Tagua <miloops@gmail.com>2009-08-10 18:19:24 -0300
commit10af9fae4a66f5f80c89ba75009cc7c7c9935a44 (patch)
tree82d77efb6addd6f4f672e4d9659c3141904e923e /activerecord/test/cases/associations
parent0e2fbd80e2420329738b891240d44a056cea1de4 (diff)
parentd0f891ae0215d7963b3918f3847ee4c015a6b90c (diff)
downloadrails-10af9fae4a66f5f80c89ba75009cc7c7c9935a44.tar.gz
rails-10af9fae4a66f5f80c89ba75009cc7c7c9935a44.tar.bz2
rails-10af9fae4a66f5f80c89ba75009cc7c7c9935a44.zip
Merge commit 'rails/master'
Diffstat (limited to 'activerecord/test/cases/associations')
-rw-r--r--activerecord/test/cases/associations/has_many_through_associations_test.rb20
1 files changed, 8 insertions, 12 deletions
diff --git a/activerecord/test/cases/associations/has_many_through_associations_test.rb b/activerecord/test/cases/associations/has_many_through_associations_test.rb
index 59985374d3..a9d4d88148 100644
--- a/activerecord/test/cases/associations/has_many_through_associations_test.rb
+++ b/activerecord/test/cases/associations/has_many_through_associations_test.rb
@@ -180,27 +180,23 @@ class HasManyThroughAssociationsTest < ActiveRecord::TestCase
end
def test_associate_with_create_and_invalid_options
- peeps = companies(:first_firm).developers.count
- assert_nothing_raised { companies(:first_firm).developers.create(:name => '0') }
- assert_equal peeps, companies(:first_firm).developers.count
+ firm = companies(:first_firm)
+ assert_no_difference('firm.developers.count') { assert_nothing_raised { firm.developers.create(:name => '0') } }
end
def test_associate_with_create_and_valid_options
- peeps = companies(:first_firm).developers.count
- assert_nothing_raised { companies(:first_firm).developers.create(:name => 'developer') }
- assert_equal peeps + 1, companies(:first_firm).developers.count
+ firm = companies(:first_firm)
+ assert_difference('firm.developers.count', 1) { firm.developers.create(:name => 'developer') }
end
def test_associate_with_create_bang_and_invalid_options
- peeps = companies(:first_firm).developers.count
- assert_raises(ActiveRecord::RecordInvalid) { companies(:first_firm).developers.create!(:name => '0') }
- assert_equal peeps, companies(:first_firm).developers.count
+ firm = companies(:first_firm)
+ assert_no_difference('firm.developers.count') { assert_raises(ActiveRecord::RecordInvalid) { firm.developers.create!(:name => '0') } }
end
def test_associate_with_create_bang_and_valid_options
- peeps = companies(:first_firm).developers.count
- assert_nothing_raised { companies(:first_firm).developers.create!(:name => 'developer') }
- assert_equal peeps + 1, companies(:first_firm).developers.count
+ firm = companies(:first_firm)
+ assert_difference('firm.developers.count', 1) { firm.developers.create!(:name => 'developer') }
end
def test_clear_associations