2017-05-07 12:04:49 +00:00
|
|
|
require 'date'
|
2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
|
|
|
describe "Date#<<" do
|
|
|
|
|
2017-10-28 15:15:48 +00:00
|
|
|
it "subtracts a number of months from a date" do
|
2017-05-07 12:04:49 +00:00
|
|
|
d = Date.civil(2007,2,27) << 10
|
|
|
|
d.should == Date.civil(2006, 4, 27)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns the last day of a month if the day doesn't exist" do
|
|
|
|
d = Date.civil(2008,3,31) << 1
|
|
|
|
d.should == Date.civil(2008, 2, 29)
|
|
|
|
end
|
|
|
|
|
2018-04-28 19:50:06 +00:00
|
|
|
it "raises an error on non numeric parameters" do
|
2019-07-27 12:40:09 +02: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) << Date.new }.should raise_error(TypeError)
|
|
|
|
-> { Date.civil(2007,2,27) << Object.new }.should raise_error(TypeError)
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|