mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 09:19:23 +01:00
14 lines
306 B
Python
14 lines
306 B
Python
import unittest
|
|
|
|
from pylinkirc.protocols import inspircd
|
|
|
|
import protocol_test_fixture as ptf
|
|
|
|
class InspIRCdProtocolTest(ptf.BaseProtocolTest):
|
|
proto_class = inspircd.InspIRCdProtocol
|
|
|
|
# In the future we will have protocol specific test cases here
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|