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
|
|
|
|
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
|
|
|
|
|
2017-12-27 11:12:47 -05:00
|
|
|
it "raises #{frozen_error_class} on an untrusted, frozen object" do
|
2017-05-07 08:04:49 -04:00
|
|
|
o = Object.new.untrust.freeze
|
2019-07-27 06:40:09 -04:00
|
|
|
-> { o.trust }.should raise_error(frozen_error_class)
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does not raise an error on a trusted, frozen object" do
|
|
|
|
o = Object.new.freeze
|
|
|
|
o.trust.should equal(o)
|
|
|
|
end
|
|
|
|
end
|