tests/__init__.py
author Tero Marttila <terom@fixme.fi>
Mon, 16 Feb 2009 22:40:35 +0200
changeset 86 6ff1140586d6
parent 79 747554808944
permissions -rw-r--r--
some tests for wsgi.Application
"""
    Our collection of unittest's for the various modules
"""

import unittest
import test_http, test_treeparse, test_urltree, test_wsgi

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