1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
This commit is contained in:
Benoit Daloze 2022-01-10 16:29:54 +01:00
parent 8abfc10605
commit 4053e8ba0d
42 changed files with 470 additions and 84 deletions

View file

@ -1,7 +1,7 @@
require_relative '../../spec_helper'
ruby_version_is ''...'3.2' do
describe "Random::DEFAULT" do
describe "Random::DEFAULT" do
ruby_version_is ''...'3.2' do
it "returns a random number generator" do
suppress_warning do
Random::DEFAULT.should respond_to(:rand)
@ -13,5 +13,33 @@ ruby_version_is ''...'3.2' do
seed2 = ruby_exe('p Random::DEFAULT.seed', options: '--disable-gems')
seed1.should != seed2
end
ruby_version_is ''...'3.0' do
it "returns a Random instance" do
suppress_warning do
Random::DEFAULT.should be_an_instance_of(Random)
end
end
end
ruby_version_is '3.0' do
it "refers to the Random class" do
suppress_warning do
Random::DEFAULT.should.equal?(Random)
end
end
it "is deprecated" do
-> {
Random::DEFAULT.should.equal?(Random)
}.should complain(/constant Random::DEFAULT is deprecated/)
end
end
end
ruby_version_is '3.2' do
it "is no longer defined" do
Random.should_not.const_defined?(:DEFAULT)
end
end
end