mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ffd0820ab3
This removes the related tests, and puts the related specs behind version guards. This affects all code in lib, including some libraries that may want to support older versions of Ruby.
27 lines
659 B
Ruby
27 lines
659 B
Ruby
require_relative '../../spec_helper'
|
|
require_relative 'fixtures/classes'
|
|
|
|
describe "Kernel#trust" do
|
|
ruby_version_is ''...'2.7' do
|
|
it "returns self" do
|
|
o = Object.new
|
|
o.trust.should equal(o)
|
|
end
|
|
|
|
it "clears the untrusted bit" do
|
|
o = Object.new.untrust
|
|
o.trust
|
|
o.untrusted?.should == false
|
|
end
|
|
|
|
it "raises #{frozen_error_class} on an untrusted, frozen object" do
|
|
o = Object.new.untrust.freeze
|
|
-> { o.trust }.should raise_error(frozen_error_class)
|
|
end
|
|
|
|
it "does not raise an error on a trusted, frozen object" do
|
|
o = Object.new.freeze
|
|
o.trust.should equal(o)
|
|
end
|
|
end
|
|
end
|