()
| 67 | # --------------------------------------------------------------------------- |
| 68 | |
| 69 | def test_build_cmd_defaults(): |
| 70 | loader = _make_loader(urls=["https://example.com"]) |
| 71 | cmd = loader._build_cmd("https://example.com") |
| 72 | assert "plasmate" in cmd[0] |
| 73 | assert "fetch" in cmd |
| 74 | assert "https://example.com" in cmd |
| 75 | assert "--format" in cmd |
| 76 | assert "text" in cmd |
| 77 | assert "--timeout" in cmd |
| 78 | assert "30000" in cmd |
| 79 | |
| 80 | |
| 81 | def test_build_cmd_with_selector(): |
nothing calls this directly
no test coverage detected