Sha256: b3e1d87e78843bdddc455ac3b8106389c9948142aabcfdbc25dd282a3b81ca4d
Contents?: true
Size: 404 Bytes
Versions: 136
Compression:
Stored size: 404 Bytes
Contents
require 'em_test_helper' class TestShutdownHooks < Test::Unit::TestCase def test_shutdown_hooks r = false EM.run { EM.add_shutdown_hook { r = true } EM.stop } assert_equal( true, r ) end def test_hook_order r = [] EM.run { EM.add_shutdown_hook { r << 2 } EM.add_shutdown_hook { r << 1 } EM.stop } assert_equal( [1, 2], r ) end end
Version data entries
136 entries across 133 versions & 9 rubygems