annotate markup/tests/__init__.py @ 105:334a338847af

Include processing instructions in serialized streams.
author cmlenz
date Fri, 28 Jul 2006 15:15:50 +0000
parents 822089ae65ce
children d4ea684655d9
rev   line source
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
1 # -*- coding: utf-8 -*-
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
2 #
66
822089ae65ce Switch copyright to Edgewall and URLs to markup.edgewall.org.
cmlenz
parents: 27
diff changeset
3 # Copyright (C) 2006 Edgewall Software
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
4 # All rights reserved.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
5 #
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
6 # This software is licensed as described in the file COPYING, which
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
7 # you should have received as part of this distribution. The terms
66
822089ae65ce Switch copyright to Edgewall and URLs to markup.edgewall.org.
cmlenz
parents: 27
diff changeset
8 # are also available at http://markup.edgewall.org/wiki/License.
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
9 #
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
10 # This software consists of voluntary contributions made by many
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
11 # individuals. For the exact contribution history, see the revision
66
822089ae65ce Switch copyright to Edgewall and URLs to markup.edgewall.org.
cmlenz
parents: 27
diff changeset
12 # history and logs, available at http://markup.edgewall.org/log/.
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
13
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
14 import doctest
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
15 import unittest
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
16
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
17 def suite():
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
18 import markup
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
19 from markup.tests import builder, core, eval, input, output, path, template
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
20 suite = unittest.TestSuite()
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
21 suite.addTest(doctest.DocTestSuite(markup))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
22 suite.addTest(builder.suite())
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
23 suite.addTest(core.suite())
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
24 suite.addTest(eval.suite())
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
25 suite.addTest(input.suite())
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
26 suite.addTest(output.suite())
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
27 suite.addTest(path.suite())
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
28 suite.addTest(template.suite())
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
29 return suite
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
30
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
31 if __name__ == '__main__':
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
32 unittest.main(defaultTest='suite')
Copyright (C) 2012-2017 Edgewall Software