require 'test/unit' require 'em-http-server' require 'eventmachine' #-------------------------------------- module EventMachine class HttpHandler < EM::HttpServer::Server def process_http_request send_data generate_response() close_connection_after_writing end end end #-------------------------------------- require 'socket' class TestApp < Test::Unit::TestCase TestHost = "127.0.0.1" TestPort = 8911 TestResponse_1 = <