(cli)
| 227 | |
| 228 | |
| 229 | def test_run_with_invalid_cmd(cli): |
| 230 | result = cli.invoke(dotenv_cli, ['run', 'i_do_not_exist']) |
| 231 | |
| 232 | assert result.exit_code == 2 |
| 233 | assert "Invalid value for '-f'" in result.output |
| 234 | |
| 235 | |
| 236 | def test_run_with_version(cli): |
nothing calls this directly
no outgoing calls
no test coverage detected