1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../shared/parse', __FILE__)
require File.expand_path('../shared/parse_us', __FILE__)
require File.expand_path('../shared/parse_eu', __FILE__)
require 'date'
describe "Date#parse" do
# The space separator is also different, doesn't work for only numbers
it "parses a day name into a Date object" do
d = Date.parse("friday")
d.should == Date.commercial(d.cwyear, d.cweek, 5)
end
it "parses a month name into a Date object" do
d = Date.parse("october")
d.should == Date.civil(Date.today.year, 10)
end
it "parses a month day into a Date object" do
d = Date.parse("5th")
d.should == Date.civil(Date.today.year, Date.today.month, 5)
end
# Specs using numbers
it "throws an argument error for a single digit" do
lambda{ Date.parse("1") }.should raise_error(ArgumentError)
end
it "parses DD as month day number" do
d = Date.parse("10")
d.should == Date.civil(Date.today.year, Date.today.month, 10)
end
it "parses DDD as year day number" do
d = Date.parse("100")
if Date.gregorian_leap?(Date.today.year)
d.should == Date.civil(Date.today.year, 4, 9)
else
d.should == Date.civil(Date.today.year, 4, 10)
end
end
it "parses MMDD as month and day" do
d = Date.parse("1108")
d.should == Date.civil(Date.today.year, 11, 8)
end
ruby_version_is "" ... "1.9" do
it "parses YYDDD as year and day number" do
d = Date.parse("10100")
d.should == Date.civil(10, 4, 10)
end
it "parses YYMMDD as year, month and day" do
d = Date.parse("201023")
d.should == Date.civil(20, 10, 23)
end
end
ruby_version_is "1.9" do
it "parses YYDDD as year and day number in 1969--2068" do
d = Date.parse("10100")
d.should == Date.civil(2010, 4, 10)
end
it "parses YYMMDD as year, month and day in 1969--2068" do
d = Date.parse("201023")
d.should == Date.civil(2020, 10, 23)
end
end
it "parses YYYYDDD as year and day number" do
d = Date.parse("1910100")
d.should == Date.civil(1910, 4, 10)
end
it "parses YYYYMMDD as year, month and day number" do
d = Date.parse("19101101")
d.should == Date.civil(1910, 11, 1)
end
end
describe "Date#parse with '.' separator" do
before :all do
@sep = '.'
end
it_should_behave_like "date_parse"
end
describe "Date#parse with '/' separator" do
before :all do
@sep = '/'
end
it_should_behave_like "date_parse"
end
describe "Date#parse with ' ' separator" do
before :all do
@sep = ' '
end
it_should_behave_like "date_parse"
end
describe "Date#parse with '/' separator US-style" do
before :all do
@sep = '/'
end
it_should_behave_like "date_parse_us"
end
ruby_version_is "" ... "1.8.7" do
describe "Date#parse with '.' separator US-style" do
before :all do
@sep = '.'
end
it_should_behave_like "date_parse_us"
end
end
describe "Date#parse with '-' separator EU-style" do
before :all do
@sep = '-'
end
it_should_behave_like "date_parse_eu"
end
ruby_version_is "1.8.7" do
describe "Date#parse(.)" do
it "parses YYYY.MM.DD into a Date object" do
d = Date.parse("2007.10.01")
d.year.should == 2007
d.month.should == 10
d.day.should == 1
end
it "parses DD.MM.YYYY into a Date object" do
d = Date.parse("10.01.2007")
d.year.should == 2007
d.month.should == 1
d.day.should == 10
end
ruby_version_is "" ... "1.9" do
it "parses YY.MM.DD into a Date object using the year YY" do
d = Date.parse("10.01.07")
d.year.should == 10
d.month.should == 1
d.day.should == 7
end
end
ruby_version_is "1.9" do
it "parses YY.MM.DD into a Date object using the year 20YY" do
d = Date.parse("10.01.07")
d.year.should == 2010
d.month.should == 1
d.day.should == 7
end
end
it "parses YY.MM.DD using the year digits as 20YY when given true as additional argument" do
d = Date.parse("10.01.07", true)
d.year.should == 2010
d.month.should == 1
d.day.should == 7
end
end
end
|