aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/transactions_test.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-01-12 05:10:06 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-01-12 05:10:06 +0000
commit3b6555acd4516167f5ca094eeae50bf5ffc59db9 (patch)
tree1544a3b871a99e2fa3c66bbf8acb2a57e5f02646 /activerecord/test/transactions_test.rb
parent353238b6a4cd7a562dbf74da352a440b310fd803 (diff)
downloadrails-3b6555acd4516167f5ca094eeae50bf5ffc59db9.tar.gz
rails-3b6555acd4516167f5ca094eeae50bf5ffc59db9.tar.bz2
rails-3b6555acd4516167f5ca094eeae50bf5ffc59db9.zip
Fix new_record? and id rollback. Closes #6910.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5886 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/transactions_test.rb')
-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