Callable with optional name, followed by decorators. Allows:
@suite@timeout(1000)@slow(500) Copy
@suite@timeout(1000)@slow(500)
To condensed on a single line:
@suite(timeout(1000), slow(500)) Copy
@suite(timeout(1000), slow(500))
Please note the pit fall in the first case - the @suite must be the first decorator.
@suite
Rest
Called with decorators only, such as:
Callable with optional name, followed by decorators. Allows:
To condensed on a single line:
Please note the pit fall in the first case - the
@suitemust be the first decorator.