aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2012-04-27 10:30:52 +0100
committerJon Leighton <j@jonathanleighton.com>2012-04-27 10:30:52 +0100
commita57b7842d0fcdcbcc567532d3a5c1f2628057a0d (patch)
tree5078ab391fb62beb1593a4741ade8cf36aac8a47 /activerecord/test/cases
parent4ed6167e985ed41311d979371813f22fcb0143b7 (diff)
downloadrails-a57b7842d0fcdcbcc567532d3a5c1f2628057a0d.tar.gz
rails-a57b7842d0fcdcbcc567532d3a5c1f2628057a0d.tar.bz2
rails-a57b7842d0fcdcbcc567532d3a5c1f2628057a0d.zip
remove unnecessary test code
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/named_scope_test.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/activerecord/test/cases/named_scope_test.rb b/activerecord/test/cases/named_scope_test.rb
index cc64afaa71..aa36a02982 100644
--- a/activerecord/test/cases/named_scope_test.rb
+++ b/activerecord/test/cases/named_scope_test.rb
@@ -70,10 +70,6 @@ class NamedScopeTest < ActiveRecord::TestCase
assert_equal Topic.replied.approved, Topic.replied.approved_as_string
end
- def test_scopes_can_be_specified_with_deep_hash_conditions
- assert_equal Topic.replied.approved, Topic.replied.approved_as_hash_condition
- end
-
def test_scopes_are_composable
assert_equal((approved = Topic.find(:all, :conditions => {:approved => true})), Topic.approved)
assert_equal((replied = Topic.find(:all, :conditions => 'replies_count > 0')), Topic.replied)