mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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.
This commit is contained in:
parent
5fe8943fda
commit
8c59b9250c
Notes:
git
2019-10-25 04:35:20 +09:00
3 changed files with 26 additions and 13 deletions
|
@ -1,7 +1,8 @@
|
|||
describe :date_valid_jd?, shared: true do
|
||||
it "returns true if passed any value other than nil" do
|
||||
it "returns true if passed a number value" do
|
||||
Date.send(@method, -100).should be_true
|
||||
Date.send(@method, :number).should be_true
|
||||
Date.send(@method, 100.0).should be_true
|
||||
Date.send(@method, 2**100).should be_true
|
||||
Date.send(@method, Rational(1,2)).should be_true
|
||||
end
|
||||
|
||||
|
@ -9,7 +10,23 @@ describe :date_valid_jd?, shared: true do
|
|||
Date.send(@method, nil).should be_false
|
||||
end
|
||||
|
||||
it "returns true if passed false" do
|
||||
Date.send(@method, false).should be_true
|
||||
ruby_version_is ''...'2.7' do
|
||||
it "returns true if passed symbol" do
|
||||
Date.send(@method, :number).should be_true
|
||||
end
|
||||
|
||||
it "returns true if passed false" do
|
||||
Date.send(@method, false).should be_true
|
||||
end
|
||||
end
|
||||
|
||||
ruby_version_is '2.7' do
|
||||
it "returns false if passed symbol" do
|
||||
Date.send(@method, :number).should be_false
|
||||
end
|
||||
|
||||
it "returns false if passed false" do
|
||||
Date.send(@method, false).should be_false
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue