aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/base_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/base_test.rb')
-rwxr-xr-xactiverecord/test/base_test.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/activerecord/test/base_test.rb b/activerecord/test/base_test.rb
index 50d1673361..fd5e439ef4 100755
--- a/activerecord/test/base_test.rb
+++ b/activerecord/test/base_test.rb
@@ -380,7 +380,7 @@ class BasicsTest < Test::Unit::TestCase
end
def test_update_by_condition
- Topic.update_all "content = 'bulk updated!'", "approved = 1"
+ Topic.update_all "content = 'bulk updated!'", ["approved = ?", true]
assert_equal "Have a nice day", Topic.find(1).content
assert_equal "bulk updated!", Topic.find(2).content
end
@@ -812,6 +812,11 @@ class BasicsTest < Test::Unit::TestCase
assert !topics(:first).approved?
topics(:first).toggle!(:approved)
assert topics(:first).approved?
+ topic = topics(:first)
+ topic.toggle(:approved)
+ assert !topic.approved?
+ topic.reload
+ assert topic.approved?
end
def test_reload