mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-23 04:20:24 +08:00
12 lines
423 B
Ruby
12 lines
423 B
Ruby
# require File.expand_path('../../../spec_helper', __FILE__)
|
|
# require File.expand_path('../fixtures/methods', __FILE__)
|
|
|
|
describe "Time#to_a" do
|
|
it "returns a 10 element array representing the deconstructed time" do
|
|
# Testing with America/Regina here because it doesn't have DST.
|
|
with_timezone("America/Regina") do
|
|
Time.at(0).to_a.should == [0, 0, 18, 31, 12, 1969, 3, 365, false, "CST"]
|
|
end
|
|
end
|
|
end
|