summaryrefslogtreecommitdiff
path: root/spec/ruby/library/date/valid_jd_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/valid_jd_spec.rb
parent5fe8943fdaf765dc01d986abafe85bd3eafb7814 (diff)
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.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2605
Diffstat (limited to 'spec/ruby/library/date/valid_jd_spec.rb')
-rw-r--r--spec/ruby/library/date/valid_jd_spec.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/spec/ruby/library/date/valid_jd_spec.rb b/spec/ruby/library/date/valid_jd_spec.rb
index 10c10d7525..aecaaabcf4 100644
--- a/spec/ruby/library/date/valid_jd_spec.rb
+++ b/spec/ruby/library/date/valid_jd_spec.rb
@@ -2,10 +2,8 @@ require_relative '../../spec_helper'
require_relative 'shared/valid_jd'
require 'date'
-ruby_version_is ''...'2.7' do
- describe "Date.valid_jd?" do
+describe "Date.valid_jd?" do
- it_behaves_like :date_valid_jd?, :valid_jd?
+ it_behaves_like :date_valid_jd?, :valid_jd?
- end
end