summaryrefslogtreecommitdiff
path: root/spec/ruby/library/date/prev_day_spec.rb
blob: 8a42824154b5e9f5a84e06d82663b76433214f31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require File.expand_path('../../../spec_helper', __FILE__)
require 'date'

describe "Date#prev_day" do
  it "returns previous day" do
    d = Date.new(2000, 7, 2).prev_day
    d.should == Date.new(2000, 7, 1)
  end

  it "returns three days ago" do
    d = Date.new(2000, 7, 4).prev_day(3)
    d.should == Date.new(2000, 7, 1)
  end
end