(self, loaded_session)
| 36 | |
| 37 | class TestDocs: |
| 38 | def test_docs_create_entity(self, loaded_session): |
| 39 | result = loaded_session.ifc_docs("root.create_entity") |
| 40 | assert result["module"] == "root" |
| 41 | assert result["function"] == "create_entity" |
| 42 | assert "params" in result |
| 43 | |
| 44 | def test_docs_bad_format(self, loaded_session): |
| 45 | with pytest.raises(ValueError): |