root/trunk/examples/divan/divan/tests/__init__.py
@
201
| Revision 201, 330 bytes (checked in by cmlenz, 2 years ago) | |
|---|---|
|
|
| Line | |
|---|---|
| 1 | # -*- coding: utf-8 -*- |
| 2 | |
| 3 | import unittest |
| 4 | |
| 5 | def suite(): |
| 6 | from divan.tests import comments, model, publish |
| 7 | |
| 8 | suite = unittest.TestSuite() |
| 9 | suite.addTest(comments.suite()) |
| 10 | suite.addTest(model.suite()) |
| 11 | suite.addTest(publish.suite()) |
| 12 | return suite |
| 13 | |
| 14 | if __name__ == '__main__': |
| 15 | unittest.main(defaultTest='suite') |
Note: See TracBrowser
for help on using the browser.
