comparison markup/tests/input.py @ 1:821114ec4f69

Initial import.
author cmlenz
date Sat, 03 Jun 2006 07:16:01 +0000
parents
children 039fc5b87405
comparison
equal deleted inserted replaced
0:20f3417d4171 1:821114ec4f69
1 # -*- coding: utf-8 -*-
2 #
3 # Copyright (C) 2006 Edgewall Software
4 # All rights reserved.
5 #
6 # This software is licensed as described in the file COPYING, which
7 # you should have received as part of this distribution. The terms
8 # are also available at http://trac.edgewall.com/license.html.
9 #
10 # This software consists of voluntary contributions made by many
11 # individuals. For the exact contribution history, see the revision
12 # history and logs, available at http://projects.edgewall.com/trac/.
13
14 import unittest
15
16 from markup.core import Stream
17 from markup.input import XMLParser
18
19
20 class XMLParserTestCase(unittest.TestCase):
21 pass
22
23
24
25 def suite():
26 suite = unittest.TestSuite()
27 suite.addTest(unittest.makeSuite(XMLParserTestCase, 'test'))
28 return suite
29
30 if __name__ == '__main__':
31 unittest.main(defaultTest='suite')
Copyright (C) 2012-2017 Edgewall Software