(cli)
| 79 | |
| 80 | |
| 81 | def test_get_not_a_file(cli): |
| 82 | result = cli.invoke(dotenv_cli, ['--file', '.', 'get', 'a']) |
| 83 | |
| 84 | assert result.exit_code == 2 |
| 85 | assert "Error opening env file" in result.output |
| 86 | |
| 87 | |
| 88 | def test_unset_existing_value(cli, dotenv_file): |
nothing calls this directly
no outgoing calls
no test coverage detected