source: wikiextrasplugin/trunk/tracwikiextras/tests/__init__.py

Last change on this file was 15264, checked in by Ryan J Ollos, 8 years ago

Remove unnecessary svn:mime-type on py files

svn:mime-type was set to "plain" for many files.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 218 bytes
Line 
1import unittest
2
3from tracwikiextras.tests import util
4
5def suite():
6    suite = unittest.TestSuite()
7    suite.addTest(util.suite())
8    return suite
9
10if __name__ == '__main__':
11    unittest.main(defaultTest='suite')
Note: See TracBrowser for help on using the repository browser.