aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2006-03-26 00:36:55 +0000
committerRick Olson <technoweenie@gmail.com>2006-03-26 00:36:55 +0000
commit6636eb16c56a8a44be8fb3ec005cfca52b0b5b4c (patch)
treeae3597dd27b869e2e67c431f999c64dc168af0f7 /activerecord/test
parentc3c39b5cb6756e68f6e84cb17bb691a2af7fea28 (diff)
downloadrails-6636eb16c56a8a44be8fb3ec005cfca52b0b5b4c.tar.gz
rails-6636eb16c56a8a44be8fb3ec005cfca52b0b5b4c.tar.bz2
rails-6636eb16c56a8a44be8fb3ec005cfca52b0b5b4c.zip
Fixed issue that kept :select options from being scoped [Rick]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4036 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/associations_join_model_test.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/test/associations_join_model_test.rb b/activerecord/test/associations_join_model_test.rb
index 08b460995e..5f8ac7e0c0 100644
--- a/activerecord/test/associations_join_model_test.rb
+++ b/activerecord/test/associations_join_model_test.rb
@@ -316,6 +316,10 @@ class AssociationsJoinModelTest < Test::Unit::TestCase
assert_equal new_author, authors(:david).reload.favorite_authors.first
end
+ def test_has_many_through_uses_correct_attributes
+ assert_nil posts(:thinking).tags.find_by_name("General").attributes["tag_id"]
+ end
+
private
# create dynamic Post models to allow different dependency options
def find_post_with_dependency(post_id, association, association_name, dependency)