(cli)
| 188 | assert "unknown property 'xyz'" in str(ex.value) |
| 189 | |
| 190 | def test_address_required(cli): |
| 191 | with pytest.raises(ValueError) as ex: |
| 192 | cli(["-m", "spam"]) |
| 193 | |
| 194 | assert "either --listen or --connect is required" in str(ex.value) |
| 195 | |
| 196 | def test_missing_target(cli): |
| 197 | with pytest.raises(ValueError) as ex: |
nothing calls this directly
no test coverage detected
searching dependent graphs…