()
| 24 | |
| 25 | |
| 26 | def test_readonly_path(): |
| 27 | path = Path.unit_circle() |
| 28 | |
| 29 | def modify_vertices(): |
| 30 | path.vertices = path.vertices * 2.0 |
| 31 | |
| 32 | with pytest.raises(AttributeError): |
| 33 | modify_vertices() |
| 34 | |
| 35 | |
| 36 | def test_path_exceptions(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…