0001"""Kid test package."""
0002
0003__revision__ = "$Rev: 59 $"
0004__date__ = "$Date: 2005-02-16 15:43:38 -0500 (Wed, 16 Feb 2005) $"
0005__author__ = "Ryan Tomayko (rtomayko@gmail.com)"
0006__copyright__ = "Copyright 2004-2005, Ryan Tomayko"
0007__license__ = "MIT <http://www.opensource.org/licenses/mit-license.php>"
0008
0009
0010import os
0011from os.path import dirname, basename, join, abspath
0012
0013template_dir = abspath(join(dirname(__file__), '../../test'))
0014output_dir = template_dir
0015template_package = 'test.'
0016
0017test_modules = ['test_namespace', 'test_pull', 'test_compiler', 'test_parser',
0018                'test_kid', 'test_serialization', 'test_comment']
0019
0020additional_tests = 0
0021basic_tests = 0
0022
0023def run_tests():
0024    from kid.test.util import run_tests
0025    tests = ['kid.test.%s' % m for m in test_modules]
0026    run_tests(tests)
0027
0028from kid.test.util import dot
0029
0030__all__ = ['dot', 'run_tests', 'template_package', 'output_dir',
0031           'template_dir']
0032
0033if __name__ == '__main__':
0034    run_tests()