aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorEmilio Tagua <miloops@gmail.com>2011-02-18 16:22:50 -0300
committerEmilio Tagua <miloops@gmail.com>2011-02-18 16:22:50 -0300
commit00418ac96bf5a25d3a7cf760499ec19ad3700007 (patch)
treece9c29df7f37b5b6afa95439db2e7740082b164a /activerecord/test
parent3927827dbeae477cb29035107fc3ae49bf5fd1cb (diff)
parent6975a41adfa04109e089416a09005425f9562afd (diff)
downloadrails-00418ac96bf5a25d3a7cf760499ec19ad3700007.tar.gz
rails-00418ac96bf5a25d3a7cf760499ec19ad3700007.tar.bz2
rails-00418ac96bf5a25d3a7cf760499ec19ad3700007.zip
Merge remote branch 'rails/master' into identity_map
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/associations_test.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/activerecord/test/cases/associations_test.rb b/activerecord/test/cases/associations_test.rb
index a1996fcf27..47b8e48582 100644
--- a/activerecord/test/cases/associations_test.rb
+++ b/activerecord/test/cases/associations_test.rb
@@ -203,14 +203,6 @@ class AssociationProxyTest < ActiveRecord::TestCase
assert_equal david.projects, david.projects.reload.reload
end
end
-
- if RUBY_VERSION < '1.9'
- def test_splat_does_not_invoke_to_a_on_singular_targets
- author = posts(:welcome).author
- author.reload.target.expects(:to_a).never
- [*author]
- end
- end
end
class OverridingAssociationsTest < ActiveRecord::TestCase