summaryrefslogtreecommitdiff
path: root/vendor/bundle/ruby/3.4.0/gems/eventmachine-1.2.7/tests/test_shutdown_hooks.rb
blob: b0e0c5cc5645b6492746c0f140e114dff6b28616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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