Sha256: 6fa6d637fd6bc7584e551fc6b8a78e020bca2622cb911f16e73496707c42b07c
Contents?: true
Size: 435 Bytes
Versions: 52
Compression:
Stored size: 435 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) require File.expand_path('../fixtures/methods', __FILE__) describe "Time#getlocal" do it "returns a new time which is the local representation of time" do # Testing with America/Regina here because it doesn't have DST. with_timezone("CST", -6) do t = Time.gm(2007, 1, 9, 12, 0, 0) t.localtime.should == Time.local(2007, 1, 9, 6, 0, 0) end end end
Version data entries
52 entries across 52 versions & 2 rubygems