view bitten/build/tests/__init__.py @ 742:c720e8eb2011 0.6.x

Merge [819] from trunk. Fixes #562.
author hodgestar
date Tue, 20 Apr 2010 19:47:14 +0000
parents d8eb5f723371
children 7c80375d4817
line wrap: on
line source
# -*- coding: utf-8 -*-
#
# Copyright (C) 2005-2007 Christopher Lenz <cmlenz@gmx.de>
# Copyright (C) 2007 Edgewall Software
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at http://bitten.edgewall.org/wiki/License.

import unittest

from bitten.build.tests import api, config, ctools, hgtools, \
                               monotools, phptools, pythontools, \
                               xmltools, javatools

def suite():
    suite = unittest.TestSuite()
    suite.addTest(api.suite())
    suite.addTest(config.suite())
    suite.addTest(ctools.suite())
    suite.addTest(hgtools.suite())
    suite.addTest(monotools.suite())
    suite.addTest(phptools.suite())
    suite.addTest(pythontools.suite())
    suite.addTest(javatools.suite())
    suite.addTest(xmltools.suite())
    return suite

if __name__ == '__main__':
    unittest.main(defaultTest='suite')
Copyright (C) 2012-2017 Edgewall Software