Sha256: 79606e3616a2b4aeb61be906b0e26d51ffe8c3a98a0fb39431b451d663bc06ef
Contents?: true
Size: 1.82 KB
Versions: 10
Compression:
Stored size: 1.82 KB
Contents
require File.join(File.dirname(__FILE__), "spec_helper") describe "Sequel thread_local_timezones extension" do after do Sequel.default_timezone = nil Sequel.thread_application_timezone = nil Sequel.thread_database_timezone = nil Sequel.thread_typecast_timezone = nil end it "should allow specifying thread local timezones via thread_*_timezone=" do proc{Sequel.thread_application_timezone = :local}.should_not raise_error proc{Sequel.thread_database_timezone = :utc}.should_not raise_error proc{Sequel.thread_typecast_timezone = nil}.should_not raise_error end it "should use thread local timezone if available" do Sequel.thread_application_timezone = :local Sequel.application_timezone.should == :local Sequel.thread_database_timezone = :utc Sequel.database_timezone.should == :utc Sequel.thread_typecast_timezone = nil Sequel.typecast_timezone.should == nil end it "should fallback to default timezone if no thread_local timezone" do Sequel.default_timezone = :utc Sequel.application_timezone.should == :utc Sequel.database_timezone.should == :utc Sequel.typecast_timezone.should == :utc end it "should use a nil thread_local_timezone if set instead of falling back to the default timezone if thread_local_timezone is set to :nil" do Sequel.typecast_timezone = :utc Sequel.thread_typecast_timezone = nil Sequel.typecast_timezone.should == :utc Sequel.thread_typecast_timezone = :nil Sequel.typecast_timezone.should == nil end it "should be thread safe" do [Thread.new{Sequel.thread_application_timezone = :utc; sleep 0.03; Sequel.application_timezone.should == :utc}, Thread.new{sleep 0.01; Sequel.thread_application_timezone = :local; sleep 0.01; Sequel.application_timezone.should == :local}].each{|x| x.join} end end
Version data entries
10 entries across 10 versions & 2 rubygems