diff options
author | Jon Leighton <j@jonathanleighton.com> | 2012-07-20 19:31:17 +0100 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2012-07-20 19:31:17 +0100 |
commit | f7d8aac40ab9b8357b55a7d38501ced0dec09448 (patch) | |
tree | f45168abbd45ef730e38c875d1105bc27636e883 /activerecord/test/cases/associations | |
parent | 45285f56f4993e3910df59e7e68b465a287ef089 (diff) | |
download | rails-f7d8aac40ab9b8357b55a7d38501ced0dec09448.tar.gz rails-f7d8aac40ab9b8357b55a7d38501ced0dec09448.tar.bz2 rails-f7d8aac40ab9b8357b55a7d38501ced0dec09448.zip |
rm redundant test
now everything is converted to the new style, this is not needed
Diffstat (limited to 'activerecord/test/cases/associations')
-rw-r--r-- | activerecord/test/cases/associations/has_many_associations_test.rb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/activerecord/test/cases/associations/has_many_associations_test.rb b/activerecord/test/cases/associations/has_many_associations_test.rb index 6e64a67761..4b7a2db096 100644 --- a/activerecord/test/cases/associations/has_many_associations_test.rb +++ b/activerecord/test/cases/associations/has_many_associations_test.rb @@ -1536,11 +1536,4 @@ class HasManyAssociationsTest < ActiveRecord::TestCase post.taggings_with_delete_all.delete_all end end - - test "association using a scope block" do - author = authors(:david) - - assert author.posts.size > 1 - assert_equal author.posts.order('posts.id').limit(1), author.posts_with_scope_block - end end |