diff options
| author | Alexander Barton <alex@barton.de> | 2012-01-21 13:21:36 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2012-01-21 13:21:36 +0100 |
| commit | 39412d648652b3fcb387cf04bf7fa9004cfcd8ba (patch) | |
| tree | bed69d39edc1c1300bfae107f21c0091de2fca0c /src/testsuite | |
| parent | c1656256df687c4a093ceb502de84bf4b0447f3c (diff) | |
| download | ngircd-39412d648652b3fcb387cf04bf7fa9004cfcd8ba.tar.gz ngircd-39412d648652b3fcb387cf04bf7fa9004cfcd8ba.zip | |
PRIVMSG/NOTICE: handle nick!user@host masks case-insensitive
And enhance our test suite to check this a little bit better :-)
Diffstat (limited to 'src/testsuite')
| -rw-r--r-- | src/testsuite/message-test.e | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testsuite/message-test.e b/src/testsuite/message-test.e index eb26ac45..d0ffcef9 100644 --- a/src/testsuite/message-test.e +++ b/src/testsuite/message-test.e @@ -35,7 +35,7 @@ expect { "@* PRIVMSG nick :test\r*@* PRIVMSG nick :test" } -send "privmsg nick,#testChannel,nick :test\r" +send "privmsg Nick,#testChannel,nick :test\r" expect { timeout { exit 1 } "@* PRIVMSG nick :test\r*401*@* PRIVMSG nick :test" @@ -47,7 +47,7 @@ expect { "401" } -send "privmsg ~user@ngircd.test.server :test\r" +send "privmsg ~UsEr@ngIRCd.Test.Server :test\r" expect { timeout { exit 1 } "@* PRIVMSG nick :test" @@ -65,7 +65,7 @@ expect { # "@* PRIVMSG nick :test" #} # -#send "privmsg nick!~user@localhost :test\r" +#send "privmsg Nick!~User@LocalHost :test\r" #expect { # timeout { exit 1 } # "@* PRIVMSG nick :test" |