Class TestContextDecorator
A base class that can either be used as a context manager during tests or as a test function or unittest.TestCase subclass decorator to perform temporary alterations.
Declaration
class TestContextDecorator
source linkDocumentation
`attr_name`: attribute assigned the return value of enable() if used as
a class decorator.
`kwarg_name`: keyword argument passing the return value of enable() if
used as a function decorator.
Methods
▷ def __exit__(self, exc_type, exc_value, traceback) ▶ def __init__(self, attr_name=None, kwarg_name=None) Overrides
This method is overriden in:
Overrides
This method is overriden in:
Overrides
This method is overriden in:
Overrides
This method is overriden in:
Subclasses