blob: 23c23f74bbe8b691cb493a11199e18cdab399918 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
require 'em_test_helper'
class TestErrorHandler < Test::Unit::TestCase
def setup
@exception = Class.new(StandardError)
end
def test_error_handler
error = nil
EM.error_handler{ |e|
error = e
EM.error_handler(nil)
EM.stop
}
assert_nothing_raised do
EM.run{
EM.add_timer(0){
raise @exception, 'test'
}
}
end
assert_equal error.class, @exception
assert_equal error.message, 'test'
end
def test_without_error_handler
assert_raise @exception do
EM.run{
EM.add_timer(0){
raise @exception, 'test'
}
}
end
end
end
|