Sha256: eaedda13a3ede5b9d9b3936759cdf9c6def6ef6eb6edd21fe00d5b86684c22ef

Contents?: true

Size: 747 Bytes

Versions: 3

Compression:

Stored size: 747 Bytes

Contents

require 'spec_helper'
require 'extlib/time'

require 'json'

describe Time, "#to_json" do

  before do
    @expected = "\"2008-03-28T22:54:20Z\""
  end

  it "should transform itself into a ISO 8601 compatible string" do
    Time.utc(2008, 3, 28, 22, 54, 20).to_json.should == @expected
    Time.xmlschema("2008-03-28T22:54:20Z").to_json.should == @expected
    Time.xmlschema("2008-03-28T17:54:20-05:00").to_json.should == @expected
  end
end

describe Time, "#to_time" do
  it "should return a copy of its self" do
    time = Time.now
    time.to_time.should == time
  end
end

describe Time, "#to_datetime" do
  it "should return an equivalent DateTime" do
    time = Time.now
    time.to_datetime.should == DateTime.parse(time.to_s)
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
extlib-0.9.16 spec/time_spec.rb
extlib-0.9.15 spec/time_spec.rb
robsharp-extlib-0.9.15 spec/time_spec.rb