From 971e03f24e1121a2fe03beab23b0370a64fcfc37 Mon Sep 17 00:00:00 2001 From: Rick Olson Date: Mon, 24 Jul 2006 04:55:16 +0000 Subject: Allow #count through a has_many association to accept :include. [Dan Peterson] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4618 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/associations_go_eager_test.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'activerecord/test/associations_go_eager_test.rb') diff --git a/activerecord/test/associations_go_eager_test.rb b/activerecord/test/associations_go_eager_test.rb index d2ae4e0dd9..ddcd72d045 100644 --- a/activerecord/test/associations_go_eager_test.rb +++ b/activerecord/test/associations_go_eager_test.rb @@ -356,4 +356,8 @@ class EagerAssociationTest < Test::Unit::TestCase assert_equal 2, one.comments.size assert_equal 2, one.categories.size end + + def test_count_with_include + assert_equal 3, authors(:david).posts_with_comments.count(:conditions => "length(comments.body) > 15") + end end -- cgit v1.2.3