aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/has_many_through_associations_test.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2010-12-22 11:45:37 +0000
committerAaron Patterson <aaron.patterson@gmail.com>2010-12-23 15:19:18 -0800
commit3f17ed407c5d61bc01fd59776205486c2350f36e (patch)
treef88e42eb305473bd6c84fb4216908ca443830fc3 /activerecord/test/cases/associations/has_many_through_associations_test.rb
parent1619c2435b2b9c821b2b0dcab9624dbb6b23eaaa (diff)
downloadrails-3f17ed407c5d61bc01fd59776205486c2350f36e.tar.gz
rails-3f17ed407c5d61bc01fd59776205486c2350f36e.tar.bz2
rails-3f17ed407c5d61bc01fd59776205486c2350f36e.zip
Test to verify that #2189 (count with has_many :through and a named_scope) is fixed
Diffstat (limited to 'activerecord/test/cases/associations/has_many_through_associations_test.rb')
-rw-r--r--activerecord/test/cases/associations/has_many_through_associations_test.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/test/cases/associations/has_many_through_associations_test.rb b/activerecord/test/cases/associations/has_many_through_associations_test.rb
index a244d310c8..a417345780 100644
--- a/activerecord/test/cases/associations/has_many_through_associations_test.rb
+++ b/activerecord/test/cases/associations/has_many_through_associations_test.rb
@@ -529,4 +529,9 @@ class HasManyThroughAssociationsTest < ActiveRecord::TestCase
def test_get_has_many_through_belongs_to_ids_with_conditions
assert_equal [categories(:general).id], authors(:mary).categories_like_general_ids
end
+
+ def test_count_has_many_through_with_named_scope
+ assert_equal 2, authors(:mary).categories.count
+ assert_equal 1, authors(:mary).categories.general.count
+ end
end