aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/transactions_test.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/activerecord/test/transactions_test.rb b/activerecord/test/transactions_test.rb
index ecc0da425d..3f3ee1adb7 100644
--- a/activerecord/test/transactions_test.rb
+++ b/activerecord/test/transactions_test.rb
@@ -133,8 +133,9 @@ class TransactionTest < Test::Unit::TestCase
:content => "Have a nice day",
:approved => false)
new_record_snapshot = new_topic.new_record?
+ id_present = new_topic.has_attribute?(Topic.primary_key)
id_snapshot = new_topic.id
-
+
# Make sure the second save gets the after_create callback called.
2.times do
begin
@@ -146,6 +147,7 @@ class TransactionTest < Test::Unit::TestCase
assert_equal "Make the transaction rollback", e.message
assert_equal new_record_snapshot, new_topic.new_record?, "The topic should have its old new_record value"
assert_equal id_snapshot, new_topic.id, "The topic should have its old id"
+ assert_equal id_present, new_topic.has_attribute?(Topic.primary_key)
ensure
remove_exception_raising_after_create_callback_to_topic
end