(model)
| 212 | class TestCLI: |
| 213 | @staticmethod |
| 214 | def _ifc_path(model): |
| 215 | f = tempfile.NamedTemporaryFile(suffix=".ifc", delete=False) |
| 216 | model.write(f.name) |
| 217 | f.close() |
| 218 | return f.name |
| 219 | |
| 220 | def test_plot_svg_writes_file(self, model_with_annotations): |
| 221 | model, _ = model_with_annotations |
no test coverage detected