source: products/Plone4ArtistsAudioPatch/trunk/tests.py @ 1591

Last change on this file since 1591 was 1, checked in by myroslav, 18 years ago

Building directory structure

  • Property svn:eol-style set to native
File size: 341 bytes
Line 
1from unittest import TestSuite
2
3def 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.