aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/kernel/itself_spec.rb
blob: 722d75d718341cb1c41fcb87f6c875e06bb08c07 (plain)
1
2
3
4
5
6
7
8
9
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)

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