mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
eafeb506cd
* spec/rubyspec/core/kernel/itself_spec.rb: `object_id` may return different objects for each calls, and the expectation of object identity is done by `equal` matcher which uses `equal?` method. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58704 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
9 lines
247 B
Ruby
9 lines
247 B
Ruby
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
|