| Total Complexity | 1 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | # pylint: disable=unused-variable,expression-not-assigned |
||
| 2 | |||
| 3 | import subprocess |
||
| 4 | import sys |
||
| 5 | |||
| 6 | from expecter import expect |
||
| 7 | |||
| 8 | |||
| 9 | def describe_main(): |
||
| 10 | def it_displays_version(): |
||
| 11 | code = subprocess.call([sys.executable, "-m", "gitman", "--version"]) |
||
| 12 | expect(code) == 0 |
||
| 13 |