diff options
Diffstat (limited to 'spec/ruby/library/datetime/to_s_spec.rb')
| -rw-r--r-- | spec/ruby/library/datetime/to_s_spec.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/ruby/library/datetime/to_s_spec.rb b/spec/ruby/library/datetime/to_s_spec.rb new file mode 100644 index 0000000000..ed0746f42b --- /dev/null +++ b/spec/ruby/library/datetime/to_s_spec.rb @@ -0,0 +1,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.is_a?(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 |
