summaryrefslogtreecommitdiff
blob: 8dab47aee6ce1d27396f4115058402651e93746e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
################################################################################
# KOLAB LIBRARY - TESTING "CONDITION.PY"
################################################################################
# test_condition.py -- Testing condition.py
# Copyright 2005 Gunnar Wrobel
# Distributed under the terms of the GNU General Public License v2
# $Id$

import unittest, doctest, sys

import WebappConfig.ebuild
import WebappConfig.filetype
import WebappConfig.protect
import WebappConfig.worker

def test_suite():
    return unittest.TestSuite((
        doctest.DocTestSuite(WebappConfig.ebuild),
        doctest.DocTestSuite(WebappConfig.filetype),
        doctest.DocTestSuite(WebappConfig.protect),
        doctest.DocTestSuite(WebappConfig.worker),
        ))

if __name__ == '__main__':
    unittest.main(defaultTest='test_suite')