(self)
| 1288 | """Tests for ModelRef stub (gap #2).""" |
| 1289 | |
| 1290 | def test_model_raises(self): |
| 1291 | s = Solver() |
| 1292 | with pytest.raises(NotImplementedError, match="not supported"): |
| 1293 | s.model() |
| 1294 | |
| 1295 | def test_model_ref_getitem_raises(self): |
| 1296 | m = ModelRef() |