aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/weakref/__getobj___spec.rb
blob: e75b8f470463f48a0a3f1dcc74d8619d4ff241e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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