Total Complexity | 4 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | #!/usr/bin/env python |
||
16 | class Testmsquaredc(object): |
||
17 | |||
18 | @classmethod |
||
19 | def setup_class(cls): |
||
20 | pass |
||
21 | |||
22 | def test_something(self): |
||
23 | pass |
||
24 | |||
25 | def test_command_line_interface(self): |
||
26 | # runner = CliRunner() |
||
27 | # result = runner.invoke(cli.main) |
||
28 | # assert result.exit_code == 0 |
||
29 | # assert 'msquaredc.cli.main' in result.output |
||
30 | # help_result = runner.invoke(cli.main, ['--help']) |
||
31 | # assert help_result.exit_code == 0 |
||
32 | # assert '--help Show this message and exit.' in help_result.output |
||
33 | pass |
||
34 | |||
35 | @classmethod |
||
36 | def teardown_class(cls): |
||
37 | pass |
||
38 | |||
39 |