Files
deb-python-testtools/testtools/twistedsupport/__init__.py
Jonathan Lange c8d131d371 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

Closes #202
2016-02-07 16:43:44 +00:00

34 lines
707 B
Python

# Copyright (c) 2016 testtools developers. See LICENSE for details.
"""Support for testing code that uses Twisted."""
__all__ = [
# Matchers
'succeeded',
'failed',
'has_no_result',
# Running tests
'AsynchronousDeferredRunTest',
'AsynchronousDeferredRunTestForBrokenTwisted',
'SynchronousDeferredRunTest',
'CaptureTwistedLogs',
'assert_fails_with',
'flush_logged_errors',
]
from ._matchers import (
succeeded,
failed,
has_no_result,
)
from ._runtest import (
AsynchronousDeferredRunTest,
AsynchronousDeferredRunTestForBrokenTwisted,
SynchronousDeferredRunTest,
CaptureTwistedLogs,
assert_fails_with,
flush_logged_errors,
)