summaryrefslogtreecommitdiff
path: root/spec/ruby/library/date/eql_spec.rb
blob: a1819cae3a60b65bb682b91614bc3d50b7cb9ac8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require_relative '../../spec_helper'
require 'date'

describe "Date#eql?" do
  it "returns true if self is equal to another date" do
    Date.civil(2007, 10, 11).eql?(Date.civil(2007, 10, 11)).should be_true
  end

  it "returns false if self is not equal to another date" do
    Date.civil(2007, 10, 11).eql?(Date.civil(2007, 10, 12)).should be_false
  end
end