root/Plone4ArtistsAudioPatch/trunk/tests.py
| Revision 792 (checked in by chervol, 2 years ago) | |
|---|---|
| |
| Line | |
|---|---|
| 1 | from unittest import TestSuite |
| 2 | |
| 3 | def test_suite(): |
| 4 | suite = TestSuite() |
| 5 | |
| 6 | name = 'p4a.audiopatch.tests.test_docintegrationtests' |
| 7 | m = __import__(name, (), (), name) |
| 8 | try: |
| 9 | suite.addTest(m.test_suite()) |
| 10 | except AttributeError, e: |
| 11 | raise AttributeError(m.__name__+': '+str(e)) |
| 12 | |
| 13 | return suite |
Note: See TracBrowser for help on using the browser.
