Sha256: b81b29f2a5dfc320fc17e932e0eb274cb8fa924d2d909e5714a85e9951a6a1ed

Contents?: true

Size: 645 Bytes

Versions: 10

Compression:

Stored size: 645 Bytes

Contents

describe "date" do
  describe "conversions" do
    it "should convert date to string" do
      date = Date.new(2005, 2, 21)
      date.to_s.should == "2005-2-21"
      date.to_s(:short).should == "21 Feb"
      date.to_s(:long).should == "February 21, 2005"
      date.to_s(:long_ordinal).should == "February 21st, 2005"
      date.to_s(:db).should == "2005-02-21"
      date.to_s(:rfc822).should == "21 Feb 2005"
    end
    
    it "should make inspect readable" do
      Date.new(2005, 2, 21).readable_inspect.should == "Mon, 21 Feb 2005"
      Date.new(2005, 2, 21).readable_inspect.should == Date.new(2005, 2, 21).inspect
    end
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
motion-support-1.0.0 spec/motion-support/core_ext/date/conversion_spec.rb
motion-support-0.3.0 spec/motion-support/core_ext/date/conversion_spec.rb
motion_blender-support-0.2.8 spec/motion-support/core_ext/date/conversion_spec.rb
motion_blender-support-0.2.7 spec/motion-support/core_ext/date/conversion_spec.rb
motion-support-0.2.6 spec/motion-support/core_ext/date/conversion_spec.rb
motion-support-0.2.5 spec/motion-support/core_ext/date/conversion_spec.rb
motion-support-0.2.4 spec/motion-support/core_ext/date/conversion_spec.rb
motion-support-0.2.3 spec/motion-support/core_ext/date/conversion_spec.rb
motion-support-0.2.2 spec/motion-support/core_ext/date/conversion_spec.rb
motion-support-0.2.0 spec/motion-support/core_ext/date/conversion_spec.rb