We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 626dfab commit 433a826Copy full SHA for 433a826
tests/test_message_lengths.py renamed to tests/test_text_messages.py
@@ -1,3 +1,4 @@
1
+# -*- coding: utf-8 -*-
2
from utils import session, server
3
4
@@ -68,3 +69,10 @@ def test_text_message_of_length_1500KB(session):
68
69
assert len(msg) == 1500000
70
server.send_message_to_all(msg)
71
assert client.recv() == msg
72
+
73
74
+def test_text_message_with_unicode_characters(session):
75
+ client, server = session
76
+ msg = '$äüö^'
77
+ server.send_message_to_all(msg)
78
+ assert client.recv() == msg
0 commit comments