aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/time/to_a_spec.rb
blob: a4c4a8fbc9a331cd3a40a34f49d8fb3b52c8ee53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require File.expand_path('../../../spec_helper', __FILE__)

describe "Time#to_a" do
  platform_is_not :windows 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
end