aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/date/parse_spec.rb
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2019-10-24 09:35:48 -0700
committerJeremy Evans <code@jeremyevans.net>2019-10-24 12:34:51 -0700
commit8c59b9250c25c66d6ed16429da139558295a4517 (patch)
tree75b45b7b6f67e7bcfcda62235ae902cb987bac63 /spec/ruby/library/date/parse_spec.rb
parent5fe8943fdaf765dc01d986abafe85bd3eafb7814 (diff)
downloadruby-8c59b9250c25c66d6ed16429da139558295a4517.tar.gz
Update date specs
Allow Date.new spec to run on 2.7. Separate Date.valid_jd? specs, since 2.7 is now stricter and requires numeric value for the first argument.
Diffstat (limited to 'spec/ruby/library/date/parse_spec.rb')
-rw-r--r--spec/ruby/library/date/parse_spec.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/spec/ruby/library/date/parse_spec.rb b/spec/ruby/library/date/parse_spec.rb
index 2e800f9818..379847a6fd 100644
--- a/spec/ruby/library/date/parse_spec.rb
+++ b/spec/ruby/library/date/parse_spec.rb
@@ -11,11 +11,9 @@ describe "Date#parse" do
d.should == Date.commercial(d.cwyear, d.cweek, 5)
end
- ruby_version_is ''...'2.7' do
- 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 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