repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 538e612a47ba8eb83e749e8fe57d27f9322cc717:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 538e612a47ba8eb83e749e8fe57d27f9322cc717
Author: Alexander Barton 
Date:   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
index d0ffcef99266556515c0c5f91fabab67a917f1ff..
index ..4cbc066eec5a0c3fd3fa589a32346eddce4e3e6f 100644
--- 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-----