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