Callable with optional name, followed by decorators. Allows:
@test@timeout(1000)@slow(500) Copy
@test@timeout(1000)@slow(500)
To condensed on a single line:
@test(timeout(1000), slow(500)) Copy
@test(timeout(1000), slow(500))
Please note the pit fall in the first case - the @test must be the first decorator.
@test
Rest
Called 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
@testmust be the first decorator.