blob: e734cfd23d206e9571a129159482f67810673ab4 (
plain)
1
2
3
4
5
6
7
8
|
require_relative '../../spec_helper'
require 'weakref'
describe "WeakRef#allocate" do
it "assigns nil as the reference" do
-> { WeakRef.allocate.__getobj__ }.should raise_error(WeakRef::RefError)
end
end
|