summaryrefslogtreecommitdiff
path: root/ngircd/src/testsuite/opless-channel-test.e
diff options
context:
space:
mode:
Diffstat (limited to 'ngircd/src/testsuite/opless-channel-test.e')
-rw-r--r--ngircd/src/testsuite/opless-channel-test.e33
1 files changed, 0 insertions, 33 deletions
diff --git a/ngircd/src/testsuite/opless-channel-test.e b/ngircd/src/testsuite/opless-channel-test.e
deleted file mode 100644
index cd4f9a0..0000000
--- a/ngircd/src/testsuite/opless-channel-test.e
+++ /dev/null
@@ -1,33 +0,0 @@
-# ngIRCd test suite
-# Op-less channel test
-
-spawn telnet 127.0.0.1 6789
-expect {
- timeout { exit 1 }
- "Connected"
-}
-
-send "nick nick\r"
-send "user user . . :User\r"
-expect {
- timeout { exit 1 }
- "376"
-}
-
-send "JOIN +Channel\r"
-expect {
- timeout { exit 1 }
- "@* JOIN :+Channel"
-}
-
-send "mode +Channel +t\r"
-expect {
- timeout { exit 1 }
- "477"
-}
-
-send "quit\r"
-expect {
- timeout { exit 1 }
- "ERROR :Closing connection"
-}