summaryrefslogtreecommitdiff
path: root/test/test_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_helper.rb')
-rw-r--r--test/test_helper.rb33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/test_helper.rb b/test/test_helper.rb
index 031a90f..517ae78 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -39,37 +39,4 @@ class MiniTest::Unit::TestCase
).to_return(options)
end
- #def without_webmock
- # WebMock.disable_net_connect!(:allow_localhost => true)
- # yield
- # WebMock.disable_net_connect!
- #end
-end
-
-#
-# a simple EM connection with callbacks for various lifecycle stages,
-# useful for testing
-#
-class TestSocketClient < EventMachine::Connection
- attr_writer :onopen, :onclose, :onmessage
- attr_reader :data
-
- def initialize
- @state = :new
- @data = []
- end
-
- def receive_data(data)
- @data << data
- if @state == :new
- @onopen.call if @onopen
- @state = :open
- else
- @onmessage.call(data) if @onmessage
- end
- end
-
- def unbind
- @onclose.call if @onclose
- end
end