summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/taint_spec.rb
diff options
context:
space:
mode:
authorBenoit Daloze <eregontp@gmail.com>2020-05-03 12:28:29 +0200
committerBenoit Daloze <eregontp@gmail.com>2020-05-03 12:28:29 +0200
commit5aaa75e7c1f4b7912c10ffdcb1cac581e20eda39 (patch)
treee1694f5a4a5558884b1b8f3890b186793e5e982f /spec/ruby/core/kernel/taint_spec.rb
parentf646d20aaeb8f02bcd3d0c5c3f5a372da654502a (diff)
Update to ruby/spec@032ee74
Diffstat (limited to 'spec/ruby/core/kernel/taint_spec.rb')
-rw-r--r--spec/ruby/core/kernel/taint_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/ruby/core/kernel/taint_spec.rb b/spec/ruby/core/kernel/taint_spec.rb
index 2d2b34d0d0..060e73963e 100644
--- a/spec/ruby/core/kernel/taint_spec.rb
+++ b/spec/ruby/core/kernel/taint_spec.rb
@@ -11,7 +11,7 @@ describe "Kernel#taint" do
it "sets the tainted bit" do
o = Object.new
o.taint
- o.tainted?.should == true
+ o.should.tainted?
end
it "raises FrozenError on an untainted, frozen object" do
@@ -27,20 +27,20 @@ describe "Kernel#taint" do
it "has no effect on immediate values" do
[nil, true, false].each do |v|
v.taint
- v.tainted?.should == false
+ v.should_not.tainted?
end
end
it "no raises a RuntimeError on symbols" do
v = :sym
-> { v.taint }.should_not raise_error(RuntimeError)
- v.tainted?.should == false
+ v.should_not.tainted?
end
it "no raises error on fixnum values" do
[1].each do |v|
-> { v.taint }.should_not raise_error(RuntimeError)
- v.tainted?.should == false
+ v.should_not.tainted?
end
end
end