view bitten/util/tests/__init__.py @ 615:d960021f902f

Added external module for testing `bitten.util.xmlio` - specifically currently parses `UCS-4`-encoding `build` data
author dfraser
date Wed, 05 Aug 2009 09:29:55 +0000
parents 933105ab516b
children d29499a4450c
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 doctest
import unittest

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

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

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