Files
deb-python-testtools/testtools/tests/twistedsupport/__init__.py
Jonathan Lange e571d9c25f Move all Twisted code to twistedsupport package
* Move test code to testtools.tests.twistedsupport, to parallel matchers
* Add testtools.deferredruntest to preserve backwards compatibility
* Move NeedsTwistedTestCase out of test_spinner into shared module for
  Twisted tests
2016-02-07 15:51:32 +00:00

21 lines
453 B
Python

# Copyright (c) testtools developers. See LICENSE for details.
from unittest import TestSuite
def test_suite():
from testtools.tests.twistedsupport import (
test_deferred,
test_matchers,
test_runtest,
test_spinner,
)
modules = [
test_deferred,
test_matchers,
test_runtest,
test_spinner,
]
suites = map(lambda x: x.test_suite(), modules)
return TestSuite(suites)