Index: LayoutTests/http/tests/websocket/tests/hybi/binary-frames_wsh.py |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/binary-frames_wsh.py b/LayoutTests/http/tests/websocket/tests/hybi/binary-frames_wsh.py |
deleted file mode 100644 |
index 656d0e1890b8715b86ee9a9e9bacd1913e867fd4..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/binary-frames_wsh.py |
+++ /dev/null |
@@ -1,18 +0,0 @@ |
-from mod_pywebsocket import common |
-from mod_pywebsocket import stream |
- |
- |
-def web_socket_do_extra_handshake(request): |
- pass |
- |
- |
-def web_socket_transfer_data(request): |
- messages_to_send = ['Hello, world!', '', all_distinct_bytes()] |
- for message in messages_to_send: |
- # FIXME: Should use better API to send binary messages when pywebsocket supports it. |
- header = stream.create_header(common.OPCODE_BINARY, len(message), 1, 0, 0, 0, 0) |
- request.connection.write(header + message) |
- |
- |
-def all_distinct_bytes(): |
- return ''.join([chr(i) for i in xrange(256)]) |