Sha256: 5ce84fff217e17efff01631c09aee4fc527b657196c573190f2353325c178ce6
Contents?: true
Size: 560 Bytes
Versions: 38
Compression:
Stored size: 560 Bytes
Contents
require_relative "spec_helper" describe "pg_timestamptz extension" do before do @db = Sequel.mock(:host=>'postgres').extension :pg_timestamptz end it "should use timestamptz as default timestamp type" do @db.create_table(:t){Time :t; DateTime :tz; Time :ot, :only_time=>true} @db.sqls.must_equal ['CREATE TABLE "t" ("t" timestamptz, "tz" timestamptz, "ot" time)'] end it "should use timestamptz when casting" do @db.get(Sequel.cast('a', Time)) @db.sqls.must_equal ["SELECT CAST('a' AS timestamptz) AS \"v\" LIMIT 1"] end end
Version data entries
38 entries across 35 versions & 2 rubygems