Module: ngircd.git Branch: master Commit: 538e612a47ba8eb83e749e8fe57d27f9322cc717 URL: http://ngircd.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git&a=commit;h=538e6...
Author: Alexander Barton alex@barton.de Date: Mon Oct 8 12:15:34 2012 +0200
Test suite: add test for user mode "b"
---
src/testsuite/message-test.e | 16 ++++++++++++++++ 1 file changed, 16 insertions(+)
diff --git a/src/testsuite/message-test.e b/src/testsuite/message-test.e index d0ffcef..4cbc066 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.<domain>" as host name
ngircd-commits@lists.barton.de