()
| 168 | |
| 169 | |
| 170 | def test__shape_to_faces_shells(): |
| 171 | |
| 172 | # bad weather tests |
| 173 | with raises(ValueError): |
| 174 | _shape_to_faces_shells(compound(vertex(1, 0, 0), vertex(0, 0, 0)).wrapped) |
| 175 | |
| 176 | with raises(ValueError): |
| 177 | _shape_to_faces_shells(vertex(0, 0, 0).wrapped) |
| 178 | |
| 179 | |
| 180 | # %% constructors |
nothing calls this directly
no test coverage detected