diff options
author | Vipul A M <vipulnsward@gmail.com> | 2013-03-19 01:15:25 +0530 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2013-03-19 01:15:25 +0530 |
commit | aee54249dd68c606233fd10c60e62934ab548bdc (patch) | |
tree | 7a5d81120e918bd799fe8e2c781f987245de4e9c /activerecord/test/cases | |
parent | 4e7292c0262ae70d968e0732bb6fea627646feef (diff) | |
download | rails-aee54249dd68c606233fd10c60e62934ab548bdc.tar.gz rails-aee54249dd68c606233fd10c60e62934ab548bdc.tar.bz2 rails-aee54249dd68c606233fd10c60e62934ab548bdc.zip |
1. Change from each to each_value since we did not use key
2. drop assignment of value to sum in test
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r-- | activerecord/test/cases/associations/eager_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/cases/associations/eager_test.rb b/activerecord/test/cases/associations/eager_test.rb index 1de7ee0846..e41e8d808a 100644 --- a/activerecord/test/cases/associations/eager_test.rb +++ b/activerecord/test/cases/associations/eager_test.rb @@ -467,7 +467,7 @@ class EagerAssociationTest < ActiveRecord::TestCase posts_with_comments = people(:michael).posts.merge(:includes => :comments, :order => 'posts.id').to_a posts_with_author = people(:michael).posts.merge(:includes => :author, :order => 'posts.id').to_a posts_with_comments_and_author = people(:michael).posts.merge(:includes => [ :comments, :author ], :order => 'posts.id').to_a - assert_equal 2, posts_with_comments.inject(0) { |sum, post| sum += post.comments.size } + assert_equal 2, posts_with_comments.inject(0) { |sum, post| sum + post.comments.size } assert_equal authors(:david), assert_no_queries { posts_with_author.first.author } assert_equal authors(:david), assert_no_queries { posts_with_comments_and_author.first.author } end @@ -523,7 +523,7 @@ class EagerAssociationTest < ActiveRecord::TestCase def test_eager_with_has_many_and_limit posts = Post.all.merge!(:order => 'posts.id asc', :includes => [ :author, :comments ], :limit => 2).to_a assert_equal 2, posts.size - assert_equal 3, posts.inject(0) { |sum, post| sum += post.comments.size } + assert_equal 3, posts.inject(0) { |sum, post| sum + post.comments.size } end def test_eager_with_has_many_and_limit_and_conditions |