Methods
- S
- T
Instance Public methods
setup()
Link
test_quote_bit_string()
Link
test_quote_cast_numeric()
Link
# File activerecord/test/cases/adapters/postgresql/quoting_test.rb, line 48 def test_quote_cast_numeric fixnum = 666 c = PostgreSQLColumn.new(nil, nil, Type::String.new, 'varchar') assert_equal "'666'", @conn.quote(fixnum, c) c = PostgreSQLColumn.new(nil, nil, Type::Text.new, 'text') assert_equal "'666'", @conn.quote(fixnum, c) end
test_quote_float_infinity()
Link
test_quote_float_nan()
Link
test_quote_range()
Link
test_quote_time_usec()
Link
test_type_cast_cidr()
Link
test_type_cast_false()
Link
test_type_cast_inet()
Link
test_type_cast_true()
Link