| Trees | Indices | Help |
|
|---|
|
|
1 # -*- coding: utf-8 -*- 2 # 3 # Copyright (C) 2006-2020 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 https://trac.edgewall.org/wiki/TracLicense. 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 https://trac.edgewall.org/log/. 13 14 import unittest 15 16 import trac.tests.wikisyntax 17 import trac.ticket.tests.wikisyntax 18 import trac.versioncontrol.web_ui.tests.wikisyntax 19 import trac.web.tests.wikisyntax 20 import trac.wiki.tests.macros 21 import trac.wiki.tests.wikisyntax 22 import trac.wiki.tests.formatter 2325 suite = unittest.TestSuite() 26 suite.addTest(trac.tests.wikisyntax.suite()) 27 suite.addTest(trac.ticket.tests.wikisyntax.suite()) 28 suite.addTest(trac.versioncontrol.web_ui.tests.wikisyntax.suite()) 29 suite.addTest(trac.web.tests.wikisyntax.suite()) 30 suite.addTest(trac.wiki.tests.macros.suite()) 31 suite.addTest(trac.wiki.tests.wikisyntax.suite()) 32 suite.addTest(trac.wiki.tests.formatter.suite()) 33 return suite34 35 if __name__ == '__main__': 36 unittest.main(defaultTest='suite') 37
| Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Wed Jul 5 01:52:10 2023 | http://epydoc.sourceforge.net |