summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/untaint_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/kernel/untaint_spec.rb')
-rw-r--r--spec/ruby/core/kernel/untaint_spec.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/ruby/core/kernel/untaint_spec.rb b/spec/ruby/core/kernel/untaint_spec.rb
index 171d32b356..44d87da5d5 100644
--- a/spec/ruby/core/kernel/untaint_spec.rb
+++ b/spec/ruby/core/kernel/untaint_spec.rb
@@ -24,4 +24,20 @@ describe "Kernel#untaint" do
o.untaint.should equal(o)
end
end
+
+ ruby_version_is "2.7"..."3.0" do
+ it "is a no-op" do
+ o = Object.new.taint
+ o.should_not.tainted?
+ o.untaint
+ o.should_not.tainted?
+ end
+
+ it "warns in verbose mode" do
+ -> {
+ o = Object.new.taint
+ o.untaint
+ }.should complain(/Object#untaint is deprecated and will be removed in Ruby 3.2/, verbose: true)
+ end
+ end
end