aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/transactions_test.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/activerecord/test/transactions_test.rb b/activerecord/test/transactions_test.rb
index f20c763268..098e01c945 100644
--- a/activerecord/test/transactions_test.rb
+++ b/activerecord/test/transactions_test.rb
@@ -86,26 +86,6 @@ class TransactionTest < Test::Unit::TestCase
assert Topic.find(2).approved?, "Second should still be approved"
end
- def test_failing_with_object_rollback
- assert !@first.approved?, "First should be unapproved initially"
-
- begin
- assert_deprecated /Object transactions/ do
- Topic.transaction(@first, @second) do
- @first.approved = true
- @second.approved = false
- @first.save
- @second.save
- raise "Bad things!"
- end
- end
- rescue
- # caught it
- end
-
- assert !@first.approved?, "First shouldn't have been approved"
- assert @second.approved?, "Second should still be approved"
- end
def test_callback_rollback_in_save
add_exception_raising_after_save_callback_to_topic