aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2012-07-20 19:35:02 +0100
committerJon Leighton <j@jonathanleighton.com>2012-07-20 19:35:02 +0100
commit2f6e33d3f84fe6924971291bbf9d0c345afe3f47 (patch)
treef66823bc85e9af7ac8483dc819448476c4090a29 /activerecord/test/cases
parentf7d8aac40ab9b8357b55a7d38501ced0dec09448 (diff)
downloadrails-2f6e33d3f84fe6924971291bbf9d0c345afe3f47.tar.gz
rails-2f6e33d3f84fe6924971291bbf9d0c345afe3f47.tar.bz2
rails-2f6e33d3f84fe6924971291bbf9d0c345afe3f47.zip
rm unnecessary test
interpolation is no longer a thing separate from "normal" assoc conditions.
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/associations/has_many_through_associations_test.rb7
1 files changed, 0 insertions, 7 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 1c06007d86..805e9eac37 100644
--- a/activerecord/test/cases/associations/has_many_through_associations_test.rb
+++ b/activerecord/test/cases/associations/has_many_through_associations_test.rb
@@ -813,13 +813,6 @@ class HasManyThroughAssociationsTest < ActiveRecord::TestCase
assert post[:author_count].nil?
end
- def test_interpolated_conditions
- post = posts(:welcome)
- assert !post.tags.empty?
- assert_equal post.tags, post.interpolated_tags
- assert_equal post.tags, post.interpolated_tags_2
- end
-
def test_primary_key_option_on_source
post = posts(:welcome)
category = categories(:general)