]> git.mxchange.org Git - quix0rs-apt-p2p.git/blob - test.py
Initial revision
[quix0rs-apt-p2p.git] / test.py
1 import unittest
2
3 import hash, node, messages
4 import listener, dispatcher
5 import ktable, transactions, khashmir
6
7 import bencode, btemplate
8
9 tests = unittest.defaultTestLoader.loadTestsFromNames(['hash', 'node', 'bencode', 'btemplate', 'listener', 'messages', 'dispatcher', 'transactions', 'ktable'])
10 result = unittest.TextTestRunner().run(tests)