aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/has_many_associations_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/cases/associations/has_many_associations_test.rb')
-rw-r--r--activerecord/test/cases/associations/has_many_associations_test.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/test/cases/associations/has_many_associations_test.rb b/activerecord/test/cases/associations/has_many_associations_test.rb
index 8267e0e18c..f10d3b2889 100644
--- a/activerecord/test/cases/associations/has_many_associations_test.rb
+++ b/activerecord/test/cases/associations/has_many_associations_test.rb
@@ -1214,11 +1214,6 @@ class HasManyAssociationsTest < ActiveRecord::TestCase
assert_nothing_raised { Firm.first.clients + Firm.all.last.clients }
end
- def test_find_all_without_conditions
- firm = companies(:first_firm)
- assert_equal 2, firm.clients.all.length
- end
-
def test_replace_with_less
firm = Firm.find(:first, :order => "id")
firm.clients = [companies(:first_client)]