(self, model)
| 13 | |
| 14 | class TestInfo: |
| 15 | def test_basic_attributes(self, model): |
| 16 | wall = model.by_type("IfcWall")[0] |
| 17 | result = info(model, wall) |
| 18 | assert result["id"] == wall.id() |
| 19 | assert result["type"] == "IfcWall" |
| 20 | assert result["attributes"]["Name"] == "Wall001" |
| 21 | |
| 22 | def test_container(self, model): |
| 23 | wall = model.by_type("IfcWall")[0] |