summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/itself_spec.rb
blob: c1f01fdc5e96f2bc06c3446691ecf5433d90eb29 (plain)
1
2
3
4
5
6
7
8
9
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "Kernel#itself" do
  it "returns the receiver itself" do
    foo = Object.new
    foo.itself.should.equal? foo
  end
end