summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/untrust_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/kernel/untrust_spec.rb')
-rw-r--r--spec/ruby/core/kernel/untrust_spec.rb15
1 files changed, 2 insertions, 13 deletions
diff --git a/spec/ruby/core/kernel/untrust_spec.rb b/spec/ruby/core/kernel/untrust_spec.rb
index ba0e073cf0..8787ab3fc9 100644
--- a/spec/ruby/core/kernel/untrust_spec.rb
+++ b/spec/ruby/core/kernel/untrust_spec.rb
@@ -2,18 +2,7 @@ require_relative '../../spec_helper'
require_relative 'fixtures/classes'
describe "Kernel#untrust" do
- ruby_version_is ""..."3.0" do
- it "is a no-op" do
- o = Object.new
- o.untrust
- o.should_not.untrusted?
- end
-
- it "warns in verbose mode" do
- -> {
- o = Object.new
- o.untrust
- }.should complain(/Object#untrust is deprecated and will be removed in Ruby 3.2/, verbose: true)
- end
+ it "has been removed" do
+ Object.new.should_not.respond_to?(:untrust)
end
end