(httpie_plugins, interface)
| 84 | |
| 85 | @pytest.mark.requires_installation |
| 86 | def test_plugins_installation_failed(httpie_plugins, interface): |
| 87 | plugin = interface.make_dummy_plugin(build=False) |
| 88 | result = httpie_plugins('install', plugin.path) |
| 89 | |
| 90 | assert result.exit_status == ExitStatus.ERROR |
| 91 | assert result.stderr.splitlines()[-1].strip().startswith("Can't install") |
| 92 | |
| 93 | |
| 94 | @pytest.mark.requires_installation |
nothing calls this directly
no test coverage detected