Browse Source

Revert "trying with abtsratc to tests detected by nose"

This reverts commit 9c43764ea5.
main
Julien Iguchi-Cartigny 10 years ago
parent
commit
9a6be93fb7
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      tests/test_wsdl.py

+ 2
- 2
tests/test_wsdl.py View File

@@ -26,11 +26,11 @@ def makeTestSuite(section='services_by_file'):
nameGenerator = getOption(cp, section)
suite = unittest.TestSuite()
for i in range(0, numTests):
suite.addTest(unittest.makeSuite(WSDLToolsAbstractCase, 'test_'))
suite.addTest(unittest.makeSuite(WSDLToolsTestCase, 'test_'))
return suite


class WSDLToolsAbstractCase():
class WSDLToolsTestCase(unittest.TestCase):

def __init__(self, methodName='runTest'):
unittest.TestCase.__init__(self, methodName)


Loading…
Cancel
Save