diff options
author | José Valim <jose.valim@gmail.com> | 2012-01-07 03:51:06 -0800 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2012-01-07 03:51:06 -0800 |
commit | 0c1846e4091dcdd48b35909b5bb3b00c58fa9d10 (patch) | |
tree | 551a9c764b0f182602a59abcac286c95a0f627c0 /activerecord | |
parent | ba168e8f067d72f7a21691f4cfdcd40432135246 (diff) | |
parent | 7d862359d0ebe8c173ef2e069dcbf2c69f43d798 (diff) | |
download | rails-0c1846e4091dcdd48b35909b5bb3b00c58fa9d10.tar.gz rails-0c1846e4091dcdd48b35909b5bb3b00c58fa9d10.tar.bz2 rails-0c1846e4091dcdd48b35909b5bb3b00c58fa9d10.zip |
Merge pull request #4377 from lest/instance-variables-1-9
get rid of using instance_variable_names method from AS
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/test/cases/associations/inner_join_association_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/inner_join_association_test.rb b/activerecord/test/cases/associations/inner_join_association_test.rb index cb777b9f78..4202d28061 100644 --- a/activerecord/test/cases/associations/inner_join_association_test.rb +++ b/activerecord/test/cases/associations/inner_join_association_test.rb @@ -67,7 +67,7 @@ class InnerJoinAssociationTest < ActiveRecord::TestCase def test_find_with_implicit_inner_joins_does_not_set_associations authors = Author.joins(:posts).select('authors.*') assert !authors.empty?, "expected authors to be non-empty" - assert authors.all? {|a| !a.send(:instance_variable_names).include?("@posts")}, "expected no authors to have the @posts association loaded" + assert authors.all? { |a| !a.instance_variable_defined?(:@posts) }, "expected no authors to have the @posts association loaded" end def test_count_honors_implicit_inner_joins |