Methods
S
T
Instance Public methods
setup()
# File activerecord/test/cases/adapters/mysql/quoting_test.rb, line 7
def setup
  @conn = ActiveRecord::Base.connection
end
test_type_cast_false()
# File activerecord/test/cases/adapters/mysql/quoting_test.rb, line 17
def test_type_cast_false
  c = Column.new(nil, 1, 'boolean')
  assert_equal 0, @conn.type_cast(false, nil)
  assert_equal 0, @conn.type_cast(false, c)
end
test_type_cast_true()
# File activerecord/test/cases/adapters/mysql/quoting_test.rb, line 11
def test_type_cast_true
  c = Column.new(nil, 1, 'boolean')
  assert_equal 1, @conn.type_cast(true, nil)
  assert_equal 1, @conn.type_cast(true, c)
end