|
| 1 | +require 'spec_helper' |
| 2 | +require 'date' |
| 3 | + |
| 4 | +# rubyspec does not have specs for these listed methods |
| 5 | +describe Date do |
| 6 | + describe "#<" do |
| 7 | + it "is true when self is before other" do |
| 8 | + (Date.new(2013, 2, 4) < Date.new(2013, 2, 5)).should == true |
| 9 | + (Date.new(2013, 2, 4) < Date.new(2014, 7, 6)).should == true |
| 10 | + end |
| 11 | + |
| 12 | + it "is false when self is not before other" do |
| 13 | + (Date.new(2013, 2, 4) < Date.new(2013, 2, 4)).should == false |
| 14 | + (Date.new(2014, 2, 4) < Date.new(2013, 7, 6)).should == false |
| 15 | + end |
| 16 | + end |
| 17 | + |
| 18 | + describe '#<=' do |
| 19 | + it "is true when self is before or the same day as other" do |
| 20 | + (Date.new(2013, 4, 5) <= Date.new(2013, 4, 5)).should == true |
| 21 | + (Date.new(2013, 4, 5) <= Date.new(2013, 4, 9)).should == true |
| 22 | + end |
| 23 | + |
| 24 | + it "is false when self is after other" do |
| 25 | + (Date.new(2013, 4, 5) <= Date.new(2013, 4, 2)).should == false |
| 26 | + (Date.new(2013, 4, 5) <= Date.new(2013, 2, 5)).should == false |
| 27 | + end |
| 28 | + end |
| 29 | + |
| 30 | + describe "#==" do |
| 31 | + it "returns true if self is equal to other date" do |
| 32 | + (Date.new(2013, 9, 13) == Date.new(2013, 9, 13)).should == true |
| 33 | + end |
| 34 | + |
| 35 | + it "returns false if self is not equal to other date" do |
| 36 | + (Date.new(2013, 10, 2) == Date.new(2013, 10, 11)).should == false |
| 37 | + end |
| 38 | + end |
| 39 | + |
| 40 | + describe "#clone" do |
| 41 | + it "creates a copy of the current date" do |
| 42 | + orig = Date.new(2013, 10, 15) |
| 43 | + copy = orig.clone |
| 44 | + |
| 45 | + orig.should == copy |
| 46 | + orig.object_id.should_not == copy.object_id |
| 47 | + end |
| 48 | + end |
| 49 | + |
| 50 | + describe "#day" do |
| 51 | + it "returns the day of the date" do |
| 52 | + Date.new(2013, 2, 10).day.should == 10 |
| 53 | + Date.new(2013, 2, 1).day.should == 1 |
| 54 | + end |
| 55 | + end |
| 56 | + |
| 57 | + describe "#month" do |
| 58 | + it "returns the month of the date" do |
| 59 | + Date.new(2013, 1, 23).month.should == 1 |
| 60 | + Date.new(2013, 12, 2).month.should == 12 |
| 61 | + end |
| 62 | + end |
| 63 | + |
| 64 | + describe "#next" do |
| 65 | + it "returns the next date from self" do |
| 66 | + Date.new(2013, 4, 6).next.should == Date.new(2013, 4, 7) |
| 67 | + Date.new(2013, 6, 30).next.should == Date.new(2013, 7, 1) |
| 68 | + Date.new(2013, 12, 31).next.should == Date.new(2014, 1, 1) |
| 69 | + end |
| 70 | + end |
| 71 | + |
| 72 | + describe "#next_month" do |
| 73 | + it "returns the date with the next calendar month to self" do |
| 74 | + Date.new(2013, 2, 5).next_month.should == Date.new(2013, 3, 5) |
| 75 | + Date.new(2013, 5, 31).next_month.should == Date.new(2013, 6, 30) |
| 76 | + Date.new(2013, 12, 5).next_month.should == Date.new(2014, 1, 5) |
| 77 | + end |
| 78 | + end |
| 79 | + |
| 80 | + describe "#prev" do |
| 81 | + it "returns the previous date from self" do |
| 82 | + Date.new(2013, 3, 5).prev.should == Date.new(2013, 3, 4) |
| 83 | + Date.new(2013, 6, 1).prev.should == Date.new(2013, 5, 31) |
| 84 | + Date.new(2014, 1, 1).prev.should == Date.new(2013, 12, 31) |
| 85 | + end |
| 86 | + end |
| 87 | + |
| 88 | + describe "#prev_month" do |
| 89 | + it "returns the date with the previous calendar month" do |
| 90 | + Date.new(2013, 2, 9).prev_month.should == Date.new(2013, 1, 9) |
| 91 | + Date.new(2013, 7, 31).prev_month.should == Date.new(2013, 6, 30) |
| 92 | + Date.new(2013, 1, 3).prev_month.should == Date.new(2012, 12, 3) |
| 93 | + end |
| 94 | + end |
| 95 | + |
| 96 | + describe "#to_s" do |
| 97 | + it "returns an ISO 8601 representation" do |
| 98 | + Date.new(2013, 10, 15).to_s.should == "2013-10-15" |
| 99 | + Date.new(2013, 4, 9).to_s.should == "2013-04-09" |
| 100 | + end |
| 101 | + end |
| 102 | + |
| 103 | + describe "#wday" do |
| 104 | + it "returns the day of the week" do |
| 105 | + Date.new(2001, 2, 3).wday.should == 6 |
| 106 | + Date.new(2001, 2, 4).wday.should == 0 |
| 107 | + end |
| 108 | + end |
| 109 | + |
| 110 | + describe "#year" do |
| 111 | + it "returns the year as an integer" do |
| 112 | + Date.new(2013, 2, 9).year.should == 2013 |
| 113 | + end |
| 114 | + end |
| 115 | +end |
0 commit comments