summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/tainted_spec.rb
blob: 72ce346dda331445c1d4f79949b0d792419a7975 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "Kernel#tainted?" do
  ruby_version_is ''...'2.7' do
    it "returns true if Object is tainted" do
      o = mock('o')
      p = mock('p')
      p.taint
      o.tainted?.should == false
      p.tainted?.should == true
    end
  end
end