Conditions | 3 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | # pylint: disable=redefined-outer-name,unused-variable,expression-not-assigned,singleton-comparison |
||
16 | def describe_cli(): |
||
17 | |||
18 | def describe_init(): |
||
19 | |||
20 | def when_config_missing(runner): |
||
21 | result = runner.invoke(main, ['--init']) |
||
22 | |||
23 | expect(result.exit_code) == 0 |
||
24 | expect(result.output) == "Created env-diff.yml\n" |
||
25 |