tests/__init__.py
author Tero Marttila <terom@fixme.fi>
Mon, 16 Feb 2009 18:35:57 +0200
changeset 75 f94c06cfcc0e
child 77 bef7196f7682
permissions -rw-r--r--
separate tests/ package, although the import paths are still wonky
"""
    Our collection of unittest's for the various modules
"""

import unittest
import test_http

def all_tests () :
    """
        Return a TestSuite with all test cases loaded
    """
    
    return unittest.TestSuite(unittest.defaultTestLoader.loadTestsFromModule(module) for module in (
        test_http,
    ))