Files
RubyMotion/test/TestTime/spec/rubyspec/to_a_spec.rb

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