File: //usr/local/rvm/src/ruby-2.5.9/spec/ruby/library/weakref/__getobj___spec.rb
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
describe "WeakRef#__getobj__" do
it "returns the object if it is reachable" do
obj = Object.new
ref = WeakRef.new(obj)
ref.__getobj__.should equal(obj)
end
it "raises WeakRef::RefError if the object is no longer reachable" do
ref = WeakRefSpec.make_dead_weakref
lambda {
ref.__getobj__
}.should raise_error(WeakRef::RefError)
end
end