]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Test suite: add test for user mode "b"
authorAlexander Barton <alex@barton.de>
Mon, 8 Oct 2012 10:15:34 +0000 (12:15 +0200)
committerAlexander Barton <alex@barton.de>
Mon, 8 Oct 2012 10:15:34 +0000 (12:15 +0200)
src/testsuite/message-test.e

index d0ffcef99266556515c0c5f91fabab67a917f1ff..4cbc066eec5a0c3fd3fa589a32346eddce4e3e6f 100644 (file)
@@ -53,6 +53,22 @@ expect {
        "@* PRIVMSG nick :test"
 }
 
+send "mode nick +b\r"
+expect {
+       timeout { exit 1 }
+       "MODE nick :+b"
+}
+send "privmsg nick :test\r"
+expect {
+       timeout { exit 1 }
+       "976"
+}
+send "mode nick -b\r"
+expect {
+       timeout { exit 1 }
+       "MODE nick :-b"
+}
+
 # The following two tests using "localhost" as host name
 # had to be disabled, because there are operating systems
 # out there, that use "localhost.<domain>" as host name