summary refs log tree commit diff
path: root/src/testsuite/channel-test.e
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2003-12-27 13:01:12 +0000
committerAlexander Barton <alex@barton.de>2003-12-27 13:01:12 +0000
commitb79b315dd4b5fcefb781d1e1e012f71e578a5346 (patch)
tree633a9de773c542fae57e0e4965379022aa339585 /src/testsuite/channel-test.e
parentc40592d2cef21dd255af978644eb96c330913be7 (diff)
downloadngircd-b79b315dd4b5fcefb781d1e1e012f71e578a5346.tar.gz
ngircd-b79b315dd4b5fcefb781d1e1e012f71e578a5346.zip
Added optional support for IDENT lookups (configure switch "--with-ident").
Diffstat (limited to 'src/testsuite/channel-test.e')
-rw-r--r--src/testsuite/channel-test.e14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/testsuite/channel-test.e b/src/testsuite/channel-test.e
index 19bed869..240abf64 100644
--- a/src/testsuite/channel-test.e
+++ b/src/testsuite/channel-test.e
@@ -1,4 +1,4 @@
-# $Id: channel-test.e,v 1.2 2002/09/09 21:26:00 alex Exp $
+# $Id: channel-test.e,v 1.3 2003/12/27 13:01:12 alex Exp $
 
 spawn telnet localhost 6789
 expect {
@@ -16,7 +16,7 @@ expect {
 send "join #channel\r"
 expect {
 	timeout { exit 1 }
-	":nick!~user@* JOIN :#channel"
+	"@* JOIN :#channel"
 }
 expect {
 	timeout { exit 1 }
@@ -26,13 +26,17 @@ expect {
 send "topic #channel :Test-Topic\r"
 expect {
 	timeout { exit 1 }
-	":nick!~user@* TOPIC #channel :Test-Topic"
+	"@* TOPIC #channel :Test-Topic"
 }
 
 send "who #channel\r"
 expect {
 	timeout { exit 1 }
-	"352 nick #channel ~user * nick H@ :0 User"
+	"352 nick #channel"
+}
+expect {
+	timeout { exit 1 }
+	"* nick H@ :0 User"
 }
 expect {
 	timeout { exit 1 }
@@ -62,7 +66,7 @@ expect {
 send "part #channel\r"
 expect {
 	timeout { exit 1 }
-	":nick!~user@* PART #channel :nick"
+	"@* PART #channel :nick"
 }
 
 send "quit\r"