File: test_handler_check.rb

package info (click to toggle)
ruby-eventmachine 1.0.3-6%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 2,000 kB
  • ctags: 3,178
  • sloc: ruby: 8,641; cpp: 5,217; java: 827; makefile: 5
file content (35 lines) | stat: -rw-r--r-- 644 bytes parent folder | download | duplicates (4)
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
require 'em_test_helper'

class TestHandlerCheck < Test::Unit::TestCase

  class Foo < EM::Connection; end;
  module TestModule; end;

  def test_with_correct_class
    assert_nothing_raised do
      EM.run {
        EM.connect("127.0.0.1", 80, Foo)
        EM.stop_event_loop
      }
    end
  end

  def test_with_incorrect_class
    assert_raise(ArgumentError) do
      EM.run {
        EM.connect("127.0.0.1", 80, String)
        EM.stop_event_loop
      }
    end
  end

  def test_with_module
    assert_nothing_raised do
      EM.run {
        EM.connect("127.0.0.1", 80, TestModule)
        EM.stop_event_loop
      }
    end
  end

end