1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/date/valid_jd_spec.rb
Jeremy Evans 8c59b9250c 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.
2019-10-24 12:34:51 -07:00

9 lines
169 B
Ruby

require_relative '../../spec_helper'
require_relative 'shared/valid_jd'
require 'date'
describe "Date.valid_jd?" do
it_behaves_like :date_valid_jd?, :valid_jd?
end