(self, session)
| 25 | |
| 26 | class TestSave: |
| 27 | def test_save_no_model(self, session): |
| 28 | with pytest.raises(IfcSessionError, match="No model loaded"): |
| 29 | session.ifc_save() |
| 30 | |
| 31 | def test_save_overwrites_original(self, session, model_file): |
| 32 | session.ifc_load(model_file) |