spec/integration/timezone_test.rb in sequel-3.4.0 vs spec/integration/timezone_test.rb in sequel-3.5.0

- old
+ new

@@ -29,22 +29,22 @@ @db.drop_table(:t) Sequel.default_timezone = nil Sequel.datetime_class = Time end - specify "should support using UTC for database storage and local time for the application" do + cspecify "should support using UTC for database storage and local time for the application", [:do, proc{|db| db.database_type != :sqlite}] do Sequel.database_timezone = :utc Sequel.application_timezone = :local test_timezone end - specify "should support using local time for database storage and UTC for the application" do + cspecify "should support using local time for database storage and UTC for the application", [:do, proc{|db| db.database_type != :sqlite}] do Sequel.database_timezone = :local Sequel.application_timezone = :utc test_timezone end - specify "should support using UTC for both database storage and for application" do + cspecify "should support using UTC for both database storage and for application", [:do, proc{|db| db.database_type != :sqlite}] do Sequel.default_timezone = :utc test_timezone end specify "should support using local time for both database storage and for application" do