(cli)
| 175 | assert "unrecognized switch --xyz" in str(ex.value) |
| 176 | |
| 177 | def test_unsupported_configure(cli): |
| 178 | with pytest.raises(ValueError) as ex: |
| 179 | cli(["--connect", "127.0.0.1:8888", "--configure-xyz", "123", "spam.py"]) |
| 180 | |
| 181 | assert "unknown property 'xyz'" in str(ex.value) |
| 182 | |
| 183 | def test_unsupported_configure_from_environment(cli): |
| 184 | with pytest.raises(ValueError) as ex: |
nothing calls this directly
no test coverage detected
searching dependent graphs…