Conditions | 1 |
Total Lines | 7 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | # pylint: disable=redefined-outer-name,unused-variable,expression-not-assigned |
||
15 | def describe_cli(): |
||
16 | def describe_signout(): |
||
17 | def it_can_force_signin(runner): |
||
18 | result = runner.invoke(main, ["Foobar", "--signout"]) |
||
19 | |||
20 | expect(result.output) == "Currently signed out of Foobar\n" |
||
21 | expect(result.exit_code) == 0 |
||
22 | |||
39 |