1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Remove the test which was testing a non-existing method, always failing on 1.9 and never even running on 1.8

This commit is contained in:
Pratik Naik 2010-01-02 16:11:29 +05:30
parent 7ff131f740
commit 3e6e3e90ef

View file

@ -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