Ignore the pyc and eclipse project files.
[quix0rs-apt-p2p.git] / test.py
1 ## Copyright 2002-2003 Andrew Loewenstern, All Rights Reserved
2 # see LICENSE.txt for license information
3
4 import unittest
5
6 import ktable, khashmir
7 import hash, node, knode
8 import actions
9 import btemplate
10 import test_krpc
11 tests = unittest.defaultTestLoader.loadTestsFromNames(['hash', 'node', 'knode', 'actions',  'ktable', 'test_krpc'])
12 result = unittest.TextTestRunner().run(tests)