remove implicit assumption about mysql in the assertion

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8912 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Michael Koziarski
2008-02-20 05:14:46 +00:00
parent cd937e6ad7
commit aa088e05dc

View File

@@ -132,8 +132,8 @@ class BasicsTest < ActiveRecord::TestCase
end
def test_read_attributes_before_type_cast_on_boolean
bool = Booleantest.create({ "value" => false })
assert_equal 0 , bool.attributes_before_type_cast["value"]
bool = Booleantest.new({ "value" => 0 })
assert_equal 0, bool.attributes_before_type_cast["value"]
end
def test_read_attributes_before_type_cast_on_datetime