summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/trust_spec.rb
blob: 4665036da633f985e49cf8401e38988ef37bb52a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "Kernel#trust" do
  ruby_version_is ""..."3.0" do
    it "is a no-op" do
      o = Object.new.untrust
      o.should_not.untrusted?
      o.trust
      o.should_not.untrusted?
    end

    it "warns in verbose mode" do
      -> {
        o = Object.new.untrust
        o.trust
      }.should complain(/Object#trust is deprecated and will be removed in Ruby 3.2/, verbose: true)
    end
  end
end