summaryrefslogtreecommitdiff
path: root/tests/end_to_end
diff options
context:
space:
mode:
Diffstat (limited to 'tests/end_to_end')
-rw-r--r--tests/end_to_end/scenarios/raw_names_command.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/end_to_end/scenarios/raw_names_command.py b/tests/end_to_end/scenarios/raw_names_command.py
deleted file mode 100644
index 09b47be..0000000
--- a/tests/end_to_end/scenarios/raw_names_command.py
+++ /dev/null
@@ -1,13 +0,0 @@
-from functions import send_stanza, expect_stanza
-
-import scenarios.simple_channel_join
-
-join_channel = scenarios.simple_channel_join.scenario
-
-scenario = (
- join_channel,
-
- send_stanza("<message type='chat' from='{jid_one}/{resource_one}' to='{irc_server_one}'><body>NAMES</body></message>"),
- expect_stanza("/message/body[text()='irc.localhost: = #foo @{nick_one} ']"),
- expect_stanza("/message/body[text()='irc.localhost: * End of /NAMES list. ']"),
-)