Should return "npx" on unix-like systems.
(monkeypatch: pytest.MonkeyPatch)
| 89 | |
| 90 | |
| 91 | def test_get_npx_unix_like(monkeypatch: pytest.MonkeyPatch): |
| 92 | """Should return "npx" on unix-like systems.""" |
| 93 | monkeypatch.setattr(sys, "platform", "linux") |
| 94 | assert _get_npx_command() == "npx" |
| 95 | |
| 96 | |
| 97 | def test_get_npx_windows(monkeypatch: pytest.MonkeyPatch): |
nothing calls this directly
no test coverage detected