2017-05-07 08:04:49 -04:00
|
|
|
require File.expand_path('../../../spec_helper', __FILE__)
|
|
|
|
require File.expand_path('../fixtures/classes', __FILE__)
|
|
|
|
|
|
|
|
describe "Kernel#untaint" do
|
|
|
|
it "returns self" do
|
|
|
|
o = Object.new
|
|
|
|
o.untaint.should equal(o)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "clears the tainted bit" do
|
|
|
|
o = Object.new.taint
|
|
|
|
o.untaint
|
|
|
|
o.tainted?.should == false
|
|
|
|
end
|
|
|
|
|
2017-12-27 11:12:47 -05:00
|
|
|
it "raises #{frozen_error_class} on a tainted, frozen object" do
|
2017-05-07 08:04:49 -04:00
|
|
|
o = Object.new.taint.freeze
|
2017-12-27 11:12:47 -05:00
|
|
|
lambda { o.untaint }.should raise_error(frozen_error_class)
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does not raise an error on an untainted, frozen object" do
|
|
|
|
o = Object.new.freeze
|
|
|
|
o.untaint.should equal(o)
|
|
|
|
end
|
|
|
|
end
|