| Total Complexity | 1 |
| Total Lines | 8 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | # pylint: disable=no-self-use,expression-not-assigned,singleton-comparison |
||
| 15 | class TestCommands: |
||
| 16 | |||
| 17 | def test_commands_can_be_run_without_project(self, tmpdir): |
||
| 18 | tmpdir.chdir() |
||
| 19 | expect(install()) == False |
||
| 20 | expect(update()) == False |
||
| 21 | expect(display()) == False |
||
| 22 | expect(delete()) == False |
||
| 23 | |||
| 39 |