Created
January 25, 2018 18:11
-
-
Save tenderlove/79832f5361d8cbe460ccb55d978b43cb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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