summaryrefslogtreecommitdiff
blob: bfb82fadf339b6ebc9ae9973bf03cd0ed13b5ff4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
################################################################################
# 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.protect
import WebappConfig.worker

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

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