Skip to content

Instantly share code, notes, and snippets.

@tenderlove
Created January 25, 2018 18:11
Show Gist options
  • Save tenderlove/79832f5361d8cbe460ccb55d978b43cb to your computer and use it in GitHub Desktop.
Save tenderlove/79832f5361d8cbe460ccb55d978b43cb to your computer and use it in GitHub Desktop.
require 'minitest/autorun'
class X < Minitest::Test
def make_lambda b
->(z) { b[:finalize] = true }
end
def test_finalizer
hash = {}
make_finalizer = ->() {
x = Object.new
ObjectSpace.define_finalizer(x, make_lambda(hash))
nil
}
make_finalizer.()
GC.start # Finalized objects get deferred until 2nd full GC
GC.start
assert hash[:finalize]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment