Coverage for tests/fixtures/multiple.py: 100.00%
7 statements
« prev ^ index » next coverage.py v7.6.3, created at 2024-10-17 17:18 +0200
« prev ^ index » next coverage.py v7.6.3, created at 2024-10-17 17:18 +0200
1from duty import duty
4@duty
5def first_duty(ctx):
6 ctx.run(lambda: 0, fmt="tap", title="first")
9@duty
10def second_duty(ctx):
11 ctx.run(lambda: 0, fmt="tap", title="second")