added orphan share rate graph
[p2pool.git] / wstools / tests / test_t1.py
1 ############################################################################
2 # Joshua R. Boverhof, David W. Robertson, LBNL
3 # See LBNLCopyright for copyright notice!
4 ###########################################################################
5 import unittest
6 import test_wsdl
7 import utils
8
9 def makeTestSuite():
10     suite = unittest.TestSuite()
11     suite.addTest(test_wsdl.makeTestSuite("services_by_file"))
12     return suite
13
14 def main():
15     loader = utils.MatchTestLoader(True, None, "makeTestSuite")
16     unittest.main(defaultTest="makeTestSuite", testLoader=loader)
17
18 if __name__ == "__main__" : main()
19     
20