See #1676. You can now duplicate space boundaries.

This commit is contained in:
Dion Moult
2023-05-03 20:37:59 +10:00
parent 41e88636ff
commit c615f7469a
12 changed files with 137 additions and 15 deletions
+3 -3
View File
@@ -132,11 +132,11 @@ class TestGetRepresentationContext(NewFile):
assert subject.get_representation_context(representation) == context
class TestIsOpeningElement(NewFile):
class TestIsElementA(NewFile):
def test_run(self):
ifc = ifcopenshell.file()
assert subject.is_opening_element(ifc.createIfcWall()) is False
assert subject.is_opening_element(ifc.createIfcOpeningElement()) is True
assert subject.is_a(ifc.createIfcWall(), "IfcSlab") is False
assert subject.is_a(ifc.createIfcOpeningElement(), "IfcOpeningElement") is True
class TestLinkObjectData(NewFile):