summaryrefslogtreecommitdiff
path: root/spec/ruby/library/datetime/to_s_spec.rb
blob: 175fb807f41fa2fac3da074de4a07cab733f2e21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require_relative '../../spec_helper'
require 'date'

describe "DateTime#to_s" do
  it "returns a new String object" do
    dt = DateTime.new(2012, 12, 24, 1, 2, 3, "+03:00")
    dt.to_s.should be_kind_of(String)
  end

  it "maintains timezone regardless of local time" do
    dt = DateTime.new(2012, 12, 24, 1, 2, 3, "+03:00")

    with_timezone("Pacific/Pago_Pago", -11) do
      dt.to_s.should == "2012-12-24T01:02:03+03:00"
    end
  end
end