(cli, dotenv_file)
| 66 | |
| 67 | |
| 68 | def test_get_non_existent_value(cli, dotenv_file): |
| 69 | result = cli.invoke(dotenv_cli, ['--file', dotenv_file, 'get', 'a']) |
| 70 | |
| 71 | assert (result.exit_code, result.output) == (1, "") |
| 72 | |
| 73 | |
| 74 | def test_get_non_existent_file(cli): |
nothing calls this directly
no outgoing calls
no test coverage detected