|
Last change
on this file since 792 was
1,
checked in by myroslav, 21 years ago
|
|
Building directory structure
|
-
Property svn:eol-style set to
native
|
|
File size:
341 bytes
|
| 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 repository browser.