summaryrefslogtreecommitdiff
path: root/spec/ruby/core/time/to_a_spec.rb
blob: 3728b8c5267e369504f6fe0132dfdb66578d2506 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require_relative '../../spec_helper'

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