diff options
author | Jon Leighton <j@jonathanleighton.com> | 2012-04-26 19:05:24 +0100 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2012-04-26 19:05:24 +0100 |
commit | cf1a83c8816edeacd209725ae6c90846e9c6b4fc (patch) | |
tree | 96b743f02e1dbfb8a1dd8ec765cb272ae72397aa /activerecord/test/cases | |
parent | 75f03eca753f1e835409a80db1f54f716ef48d18 (diff) | |
download | rails-cf1a83c8816edeacd209725ae6c90846e9c6b4fc.tar.gz rails-cf1a83c8816edeacd209725ae6c90846e9c6b4fc.tar.bz2 rails-cf1a83c8816edeacd209725ae6c90846e9c6b4fc.zip |
don't need this test
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r-- | activerecord/test/cases/associations/has_many_associations_test.rb | 5 |
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)] |