blob: 61d3f899dcbabfe1151fbc012d0b0e011a513cc2 (
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
26
27
28
29
|
################################################################################
# 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.db
import WebappConfig.dotconfig
import WebappConfig.ebuild
import WebappConfig.filetype
import WebappConfig.protect
import WebappConfig.worker
def test_suite():
return unittest.TestSuite((
doctest.DocTestSuite(WebappConfig.db),
doctest.DocTestSuite(WebappConfig.dotconfig),
doctest.DocTestSuite(WebappConfig.ebuild),
doctest.DocTestSuite(WebappConfig.filetype),
doctest.DocTestSuite(WebappConfig.protect),
doctest.DocTestSuite(WebappConfig.worker),
))
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')
|