(cli)
| 72 | |
| 73 | |
| 74 | def test_get_non_existent_file(cli): |
| 75 | result = cli.invoke(dotenv_cli, ['--file', 'nx_file', 'get', 'a']) |
| 76 | |
| 77 | assert result.exit_code == 2 |
| 78 | assert "Error opening env file" in result.output |
| 79 | |
| 80 | |
| 81 | def test_get_not_a_file(cli): |
nothing calls this directly
no outgoing calls
no test coverage detected