MCPcopy Create free account
hub / github.com/IfcOpenShell/IfcOpenShell / test_list_all_modules

Method test_list_all_modules

src/ifcmcp/tests/test_edit.py:17–23  ·  view source on GitHub ↗
(self, loaded_session)

Source from the content-addressed store, hash-verified

15
16class TestList:
17 def test_list_all_modules(self, loaded_session):
18 result = loaded_session.ifc_list()
19 assert isinstance(result, list)
20 assert len(result) > 0
21 modules = [m["module"] for m in result]
22 assert "root" in modules
23 assert "spatial" in modules
24
25 def test_list_module_functions(self, loaded_session):
26 result = loaded_session.ifc_list(module="root")

Callers

nothing calls this directly

Calls 1

ifc_listMethod · 0.80

Tested by

no test coverage detected