aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2010-01-02 16:11:29 +0530
committerPratik Naik <pratiknaik@gmail.com>2010-01-02 16:12:01 +0530
commit3e6e3e90ef432f9fa70ee07e4ac4924e9005dc71 (patch)
tree9cb148212254872f96bcdd93e861671df6ae8a67 /activerecord
parent7ff131f740d10cad767ab1200f9d089055806090 (diff)
downloadrails-3e6e3e90ef432f9fa70ee07e4ac4924e9005dc71.tar.gz
rails-3e6e3e90ef432f9fa70ee07e4ac4924e9005dc71.tar.bz2
rails-3e6e3e90ef432f9fa70ee07e4ac4924e9005dc71.zip
Remove the test which was testing a non-existing method, always failing on 1.9 and never even running on 1.8
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/cases/associations/has_one_associations_test.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/activerecord/test/cases/associations/has_one_associations_test.rb b/activerecord/test/cases/associations/has_one_associations_test.rb
index 289c89d1e2..d359ad48c5 100644
--- a/activerecord/test/cases/associations/has_one_associations_test.rb
+++ b/activerecord/test/cases/associations/has_one_associations_test.rb
@@ -327,10 +327,4 @@ class HasOneAssociationsTest < ActiveRecord::TestCase
assert !account.new_record?
assert_equal 500, account.credit_limit
end
-
- def test_create!_respects_hash_condition
- account = companies(:first_firm).create_account_limit_500_with_hash_conditions!
- assert !account.new_record?
- assert_equal 500, account.credit_limit
- end
end