An IfcSession with an in-memory model already loaded (no file path).
(model)
| 53 | |
| 54 | @pytest.fixture |
| 55 | def loaded_session(model): |
| 56 | """An IfcSession with an in-memory model already loaded (no file path).""" |
| 57 | s = IfcSession() |
| 58 | s.model = model |
| 59 | return s |