]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/testsuite/message-test.e
Cleaned up PRIVMSG and NOTICE patches.
[ngircd-alex.git] / src / testsuite / message-test.e
index 000334649d53e07230e36cff0c7be7c0a2abdb3c..dd164822e418292bd46a412ffb76319e79257a39 100644 (file)
@@ -1,5 +1,3 @@
-# $Id: mode-test.e,v 1.7 2008/02/16 11:27:49 fw Exp $
-
 spawn telnet localhost 6789
 expect {
        timeout { exit 1 }
@@ -43,14 +41,31 @@ expect {
        "@* PRIVMSG nick :test\r*401*@* PRIVMSG nick :test"
 }
 
-send "JOIN #testChannel\r"
-
 send "privmsg doesnotexist :test\r"
 expect {
        timeout { exit 1 }
        "401"
 }
 
+send "privmsg ~user@ngircd.test.server :test\r"
+expect {
+       timeout { exit 1 }
+       "@* PRIVMSG nick :test"
+}
+
+
+send "privmsg ~user\%localhost :test\r"
+expect {
+       timeout { exit 1 }
+       "@* PRIVMSG nick :test"
+}
+
+send "privmsg nick!~user@localhost :test\r"
+expect {
+       timeout { exit 1 }
+       "@* PRIVMSG nick :test"
+}
+
 send "away :away\r"
 expect {
        timeout { exit 1 }