aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/deprecated_associations_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/deprecated_associations_test.rb')
-rwxr-xr-xactiverecord/test/deprecated_associations_test.rb11
1 files changed, 6 insertions, 5 deletions
diff --git a/activerecord/test/deprecated_associations_test.rb b/activerecord/test/deprecated_associations_test.rb
index 1d5908d774..d96a587dc0 100755
--- a/activerecord/test/deprecated_associations_test.rb
+++ b/activerecord/test/deprecated_associations_test.rb
@@ -79,10 +79,11 @@ class DeprecatedAssociationsTest < Test::Unit::TestCase
end
def test_has_one_dependence
+ num_accounts = Account.count
firm = Firm.find(1)
assert firm.has_account?
- firm.destroy
- assert_equal 1, Account.find_all.length
+ firm.destroy
+ assert_equal num_accounts - 1, Account.count
end
def test_has_one_dependence_with_missing_association
@@ -124,10 +125,10 @@ class DeprecatedAssociationsTest < Test::Unit::TestCase
assert !Account.find(2).firm?(companies(:first_firm)), "Unknown isn't linked"
end
- def test_has_many_dependence_on_account
- assert_equal 2, Account.find_all.length
+ def test_has_many_dependence_on_account
+ num_accounts = Account.count
companies(:first_firm).destroy
- assert_equal 1, Account.find_all.length
+ assert_equal num_accounts - 1, Account.count
end
def test_find_in