From 0925c6b6a06dd9fb5599d24ec9c2f4e11282bc12 Mon Sep 17 00:00:00 2001 From: Rick Olson Date: Sun, 19 Mar 2006 02:01:40 +0000 Subject: Allow has_many :through to work on has_many associations (closes #3864) [sco@scottraymond.net] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3964 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/associations_join_model_test.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'activerecord/test/associations_join_model_test.rb') diff --git a/activerecord/test/associations_join_model_test.rb b/activerecord/test/associations_join_model_test.rb index f53a7669f4..4b0f4e4c33 100644 --- a/activerecord/test/associations_join_model_test.rb +++ b/activerecord/test/associations_join_model_test.rb @@ -230,6 +230,22 @@ class AssociationsJoinModelTest < Test::Unit::TestCase end end + def test_has_many_through_has_many_find_all + assert_equal comments(:greetings), authors(:david).comments.find(:all).first + end + + def test_has_many_through_has_many_find_first + assert_equal comments(:greetings), authors(:david).comments.find(:first) + end + + def test_has_many_through_has_many_find_conditions + assert_equal comments(:does_it_hurt), authors(:david).comments.find(:first, :conditions => "comments.type='SpecialComment'", :order => 'comments.id') + end + + def test_has_many_through_has_many_find_by_id + assert_equal comments(:more_greetings), authors(:david).comments.find(2) + end + private # create dynamic Post models to allow different dependency options def find_post_with_dependency(post_id, association, association_name, dependency) -- cgit v1.2.3