tests/__init__.py
changeset 75 f94c06cfcc0e
child 77 bef7196f7682
equal deleted inserted replaced
74:406cf77d23f9 75:f94c06cfcc0e
       
     1 """
       
     2     Our collection of unittest's for the various modules
       
     3 """
       
     4 
       
     5 import unittest
       
     6 import test_http
       
     7 
       
     8 def all_tests () :
       
     9     """
       
    10         Return a TestSuite with all test cases loaded
       
    11     """
       
    12     
       
    13     return unittest.TestSuite(unittest.defaultTestLoader.loadTestsFromModule(module) for module in (
       
    14         test_http,
       
    15     ))
       
    16