mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-03 03:36:44 +00:00
minimal docs
This commit is contained in:
parent
a1c8641359
commit
4de7077689
@ -120,6 +120,19 @@ def eliot_logged_test(f):
|
|||||||
|
|
||||||
@attr.s
|
@attr.s
|
||||||
class EliotLoggedRunTest(object):
|
class EliotLoggedRunTest(object):
|
||||||
|
"""
|
||||||
|
A *RunTest* implementation which surrounds test invocation with an
|
||||||
|
Eliot-based action.
|
||||||
|
|
||||||
|
This *RunTest* composes with another for convenience.
|
||||||
|
|
||||||
|
:ivar case: The test case to run.
|
||||||
|
|
||||||
|
:ivar handlers: Pass-through for the wrapped *RunTest*.
|
||||||
|
:ivar last_resort: Pass-through for the wrapped *RunTest*.
|
||||||
|
|
||||||
|
:ivar _run_tests_with_factory: A factory for the other *RunTest*.
|
||||||
|
"""
|
||||||
_run_tests_with_factory = attr.ib()
|
_run_tests_with_factory = attr.ib()
|
||||||
case = attr.ib()
|
case = attr.ib()
|
||||||
handlers = attr.ib(default=None)
|
handlers = attr.ib(default=None)
|
||||||
|
Loading…
Reference in New Issue
Block a user