2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
|
|
|
require_relative 'fixtures/classes'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
describe "Kernel#trust" do
|
2019-09-24 23:59:12 -04:00
|
|
|
ruby_version_is ''...'2.7' do
|
|
|
|
it "returns self" do
|
|
|
|
o = Object.new
|
|
|
|
o.trust.should equal(o)
|
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2019-09-24 23:59:12 -04:00
|
|
|
it "clears the untrusted bit" do
|
|
|
|
o = Object.new.untrust
|
|
|
|
o.trust
|
2020-05-03 06:28:29 -04:00
|
|
|
o.should_not.untrusted?
|
2019-09-24 23:59:12 -04:00
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2020-02-08 21:07:01 -05:00
|
|
|
it "raises FrozenError on an untrusted, frozen object" do
|
2019-09-24 23:59:12 -04:00
|
|
|
o = Object.new.untrust.freeze
|
2020-02-08 21:07:01 -05:00
|
|
|
-> { o.trust }.should raise_error(FrozenError)
|
2019-09-24 23:59:12 -04:00
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2019-09-24 23:59:12 -04:00
|
|
|
it "does not raise an error on a trusted, frozen object" do
|
|
|
|
o = Object.new.freeze
|
|
|
|
o.trust.should equal(o)
|
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
2020-10-24 09:52:37 -04:00
|
|
|
|
|
|
|
ruby_version_is "2.7"..."3.0" do
|
|
|
|
it "is a no-op" do
|
|
|
|
o = Object.new.untrust
|
|
|
|
o.should_not.untrusted?
|
|
|
|
o.trust
|
|
|
|
o.should_not.untrusted?
|
|
|
|
end
|
|
|
|
|
|
|
|
it "warns in verbose mode" do
|
|
|
|
-> {
|
|
|
|
o = Object.new.untrust
|
|
|
|
o.trust
|
|
|
|
}.should complain(/Object#trust is deprecated and will be removed in Ruby 3.2/, verbose: true)
|
|
|
|
end
|
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|