Sha256: a3cf896d8be0aaed240f4b69c8f287901b67dbbabb1026c37c079d9b6fa05b0b

Contents?: true

Size: 574 Bytes

Versions: 5

Compression:

Stored size: 574 Bytes

Contents

require 'date'

describe "Date#===" do

  it "returns 0 when comparing two equal dates" do
    (Date.civil(2000, 04, 06) <=> Date.civil(2000, 04, 06)).should == 0
  end

  it "computes the difference between two dates" do
    (Date.civil(2000, 04, 05) <=> Date.civil(2000, 04, 06)).should == -1
    (Date.civil(2001, 04, 05) <=> Date.civil(2000, 04, 06)).should == 1
  end

  it "compares to another numeric" do
    (Date.civil(2000, 04, 05) <=> Date.civil(2000, 04, 06).jd).should == -1
    (Date.civil(2001, 04, 05) <=> Date.civil(2000, 04, 06).jd).should == 1
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rubysl-date-2.0.9 spec/date/relationship_spec.rb
rubysl-date-2.0.8 spec/date/relationship_spec.rb
rubysl-date-2.0.6 spec/date/relationship_spec.rb
rubysl-date-2.0.5 spec/date/relationship_spec.rb
rubysl-date-2.0.3 spec/date/relationship_spec.rb