mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-07 22:42:10 +08:00
22 lines
602 B
Ruby
22 lines
602 B
Ruby
# require File.expand_path('../../../spec_helper', __FILE__)
|
|
# require File.expand_path('../fixtures/methods', __FILE__)
|
|
# require File.expand_path('../shared/gmtime', __FILE__)
|
|
|
|
# describe "Time#gmtime" do
|
|
# it_behaves_like(:time_gmtime, :gmtime)
|
|
# end
|
|
describe "Time#gmtime" do
|
|
before do
|
|
@method = :gmtime
|
|
end
|
|
|
|
it "returns the utc representation of time" do
|
|
# Testing with America/Regina here because it doesn't have DST.
|
|
with_timezone("CST", -6) do
|
|
t = Time.local(2007, 1, 9, 6, 0, 0)
|
|
t.send(@method)
|
|
t.should == Time.gm(2007, 1, 9, 12, 0, 0)
|
|
end
|
|
end
|
|
end
|