mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
testNoticeNonexistentChannel: also quote RFC 1459
This commit is contained in:
@ -54,10 +54,16 @@ class NoticeTestCase(cases.BaseServerTestCase):
|
|||||||
@cases.mark_specifications("RFC1459", "RFC2812")
|
@cases.mark_specifications("RFC1459", "RFC2812")
|
||||||
def testNoticeNonexistentChannel(self):
|
def testNoticeNonexistentChannel(self):
|
||||||
"""
|
"""
|
||||||
|
"automatic replies must never be
|
||||||
|
sent in response to a NOTICE message. This rule applies to servers
|
||||||
|
too - they must not send any error reply back to the client on
|
||||||
|
receipt of a notice"
|
||||||
|
<https://tools.ietf.org/html/rfc1459#section-4.4.2>
|
||||||
|
|
||||||
'automatic replies MUST NEVER be sent in response to a NOTICE message.
|
'automatic replies MUST NEVER be sent in response to a NOTICE message.
|
||||||
This rule applies to servers too - they MUST NOT send any error repl
|
This rule applies to servers too - they MUST NOT send any error repl
|
||||||
back to the client on receipt of a notice.'
|
back to the client on receipt of a notice."
|
||||||
https://tools.ietf.org/html/rfc2812#section-3.3.2>
|
<https://tools.ietf.org/html/rfc2812#section-3.3.2>
|
||||||
"""
|
"""
|
||||||
self.connectClient("foo")
|
self.connectClient("foo")
|
||||||
self.sendLine(1, "NOTICE #nonexistent :hello there")
|
self.sendLine(1, "NOTICE #nonexistent :hello there")
|
||||||
|
Reference in New Issue
Block a user