summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2020-03-24 22:59:52 +0100
committerlouiz’ <louiz@louiz.org>2020-05-05 21:10:46 +0200
commita156b7514ebc1d2988bfff9402e9f0dbe527497b (patch)
tree37a7ed7542188d841f8362e24d8bf06619f9efa1
parent91c9aa60849e1e0c3b4c14097fe62439193b20db (diff)
downloadbiboumi-a156b7514ebc1d2988bfff9402e9f0dbe527497b.tar.gz
biboumi-a156b7514ebc1d2988bfff9402e9f0dbe527497b.tar.bz2
biboumi-a156b7514ebc1d2988bfff9402e9f0dbe527497b.tar.xz
biboumi-a156b7514ebc1d2988bfff9402e9f0dbe527497b.zip
Remove raw_names_command e2e test
-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. ']"),
-)