repo: ngircd action: commit revision: path_from: revision_from: 538e612a47ba8eb83e749e8fe57d27f9322cc717: path_to: revision_to:
commit 538e612a47ba8eb83e749e8fe57d27f9322cc717 Author: Alexander BartonDate: Mon Oct 8 12:15:34 2012 +0200 Test suite: add test for user mode "b" diff --git a/src/testsuite/message-test.e b/src/testsuite/message-test.e
--- a/src/testsuite/message-test.e
+++ b/src/testsuite/message-test.e
@@ -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." as host name
-----END OF PAGE-----