From 656fb866f91a87677ce501d3c9ad6aba9048d00f Mon Sep 17 00:00:00 2001 From: Michael Koziarski Date: Thu, 6 Oct 2005 04:15:14 +0000 Subject: Quote booleans according the rules defined by the adapter * SQLite schema has been updated * Postgresql schema needs to be fixed too Simplify AR::Base#toggle to store the boolean, not the quoted value * expand the tests git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2474 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/base_test.rb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'activerecord/test/base_test.rb') 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 -- cgit v1.2.3