view bitten/util/tests/__init__.py @ 832:7c80375d4817

Updated copyright to 2010.
author osimons
date Wed, 06 Oct 2010 09:49:05 +0000
parents d29499a4450c
children
line wrap: on
line source
# -*- coding: utf-8 -*-
#
# Copyright (C) 2005-2007 Christopher Lenz <cmlenz@gmx.de>
# Copyright (C) 2007-2010 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 doctest
import unittest

from bitten.util import xmlio as xmlio_module
from bitten.util.tests import xmlio as xmlio_tests
from bitten.util.tests import json as json_tests

def suite():
    suite = unittest.TestSuite()
    suite.addTest(doctest.DocTestSuite(xmlio_module))
    suite.addTest(json_tests.suite())
    suite.addTest(xmlio_tests.suite())
    return suite

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