1 | """Sample integration test module using pytest-describe and expecter.""" |
||
2 | # pylint: disable=redefined-outer-name,unused-variable,expression-not-assigned,singleton-comparison |
||
3 | |||
4 | import pytest |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
5 | from expecter import expect |
||
0 ignored issues
–
show
|
|||
6 | |||
7 | from click.testing import CliRunner |
||
0 ignored issues
–
show
|
|||
8 | |||
9 | from taskjuggler_python.tjpy_client import main |
||
0 ignored issues
–
show
|
|||
10 | |||
11 | |||
12 | # @pytest.fixture |
||
13 | # def runner(): |
||
14 | # return CliRunner() |
||
15 | |||
16 | |||
17 | # def describe_cli(): |
||
18 | |||
19 | # def describe_conversion(): |
||
20 | |||
21 | |||
0 ignored issues
–
show
|
|||
22 |