source: tracimagesvgmacro/0.11/imagesvg/tests/__init__.py

Last change on this file was 4764, checked in by Richard Liao, 15 years ago

add ImageSvgMacro for trac 0.11

File size: 224 bytes
Line 
1import unittest
2
3from tickettemplate.tests import test_tt
4
5def suite():
6    suite = unittest.TestSuite()
7    suite.addTest(test_tt.suite())
8    return suite
9
10if __name__ == '__main__':
11    unittest.main(defaultTest='suite')
Note: See TracBrowser for help on using the repository browser.