bundled wstools-0.3
[p2pool.git] / wstools / tests / test_wstools_net.py
1 #!/usr/bin/env python
2
3 ############################################################################
4 # Joshua R. Boverhof, David W. Robertson, LBNL
5 # See LBNLCopyright for copyright notice!
6 ###########################################################################
7 import unittest
8 import test_wsdl
9
10 def makeTestSuite():
11     suite = unittest.TestSuite()
12     suite.addTest(test_wsdl.makeTestSuite("services_by_http"))
13     return suite
14
15 def main():
16     unittest.main(defaultTest="makeTestSuite")
17
18 if __name__ == "__main__" : main()
19     
20