mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
18 lines
563 B
Python
18 lines
563 B
Python
"""Format of ``CAP LS`` sent by IRCv3 clients."""
|
|
|
|
from irctest import cases
|
|
from irctest.irc_utils.message_parser import Message
|
|
|
|
|
|
class CapTestCase(cases.BaseClientTestCase):
|
|
@cases.mark_specifications("IRCv3")
|
|
def testSendCap(self):
|
|
"""Send CAP LS 302 and read the result."""
|
|
self.readCapLs()
|
|
|
|
@cases.mark_specifications("IRCv3")
|
|
def testEmptyCapLs(self):
|
|
"""Empty result to CAP LS. Client should send CAP END."""
|
|
m = self.negotiateCapabilities([])
|
|
self.assertEqual(m, Message({}, None, "CAP", ["END"]))
|