Test that PostgreSQL adapter includes `usec` when quoting `DateTime`

This commit is contained in:
Ben Cherry 2013-08-27 16:29:48 -07:00
parent 1cb5094903
commit 5f631d63ae
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,7 @@
* Test that PostgreSQL adapter includes `usec` when quoting `DateTime` objects
*Ben Cherry*
* Fix PredicateBuilder so polymorhic association keys in `where` clause can
also accept not only `ActiveRecord::Base` direct descendances (decorated
models, for example).

View File

@ -52,6 +52,11 @@ module ActiveRecord
c = Column.new(nil, nil, 'text')
assert_equal "'666'", @conn.quote(fixnum, c)
end
def test_quote_time_usec
assert_equal "'1970-01-01 00:00:00.000000'", @conn.quote(Time.at(0))
assert_equal "'1970-01-01 00:00:00.000000'", @conn.quote(Time.at(0).to_datetime)
end
end
end
end