Conditions | 2 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | # pylint: disable=redefined-outer-name,unused-variable,expression-not-assigned,singleton-comparison |
||
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 |