Mercurial > genshi > genshi-test
annotate markup/tests/__init__.py @ 218:af15e231d972
Updated change log.
author | cmlenz |
---|---|
date | Mon, 04 Sep 2006 23:41:10 +0000 |
parents | d4ea684655d9 |
children |
rev | line source |
---|---|
1 | 1 # -*- coding: utf-8 -*- |
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 | 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 | |
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 | 9 # |
10 # This software consists of voluntary contributions made by many | |
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 | 13 |
14 import doctest | |
15 import unittest | |
16 | |
17 def suite(): | |
18 import markup | |
115 | 19 from markup.tests import builder, core, eval, filters, input, output, \ |
20 path, template | |
1 | 21 suite = unittest.TestSuite() |
22 suite.addTest(doctest.DocTestSuite(markup)) | |
23 suite.addTest(builder.suite()) | |
24 suite.addTest(core.suite()) | |
25 suite.addTest(eval.suite()) | |
115 | 26 suite.addTest(filters.suite()) |
1 | 27 suite.addTest(input.suite()) |
28 suite.addTest(output.suite()) | |
29 suite.addTest(path.suite()) | |
30 suite.addTest(template.suite()) | |
31 return suite | |
32 | |
33 if __name__ == '__main__': | |
34 unittest.main(defaultTest='suite') |