2017-05-07 08:04:49 -04:00
|
|
|
require 'date'
|
2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
describe "Date#-" do
|
|
|
|
|
2017-10-28 11:15:48 -04:00
|
|
|
it "subtracts a number of days from a Date" do
|
2017-05-07 08:04:49 -04:00
|
|
|
d = Date.civil(2007, 5 ,2) - 13
|
|
|
|
d.should == Date.civil(2007, 4, 19)
|
|
|
|
end
|
|
|
|
|
2017-10-28 11:15:48 -04:00
|
|
|
it "subtracts a negative number of days from a Date" do
|
2017-05-07 08:04:49 -04:00
|
|
|
d = Date.civil(2007, 4, 19).-(-13)
|
|
|
|
d.should == Date.civil(2007, 5 ,2)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "computes the difference between two dates" do
|
|
|
|
(Date.civil(2007,2,27) - Date.civil(2007,2,27)).should == 0
|
|
|
|
(Date.civil(2007,2,27) - Date.civil(2007,2,26)).should == 1
|
|
|
|
(Date.civil(2006,2,27) - Date.civil(2007,2,27)).should == -365
|
|
|
|
(Date.civil(2008,2,27) - Date.civil(2007,2,27)).should == 365
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
it "raises an error for non Numeric arguments" do
|
2019-07-27 06:40:09 -04:00
|
|
|
-> { Date.civil(2007,2,27) - :hello }.should raise_error(TypeError)
|
|
|
|
-> { Date.civil(2007,2,27) - "hello" }.should raise_error(TypeError)
|
|
|
|
-> { Date.civil(2007,2,27) - Object.new }.should raise_error(TypeError)
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|