Allow IDS to audit any entity, not just IfcObjects

This commit is contained in:
Dion Moult
2022-05-10 22:13:28 +10:00
parent 4326a74c64
commit a78d6f42e5
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -224,7 +224,7 @@ class TestIdsAuthoring(unittest.TestCase):
assert spec.asdict() == {
"@name": "Unnamed",
"@use": "required",
"@ifcVersion": "IFC2X3", # :(
"@ifcVersion": ["IFC2X3", "IFC4"],
"applicability": {},
"requirements": {},
}
@@ -233,7 +233,7 @@ class TestIdsAuthoring(unittest.TestCase):
spec = ids.specification(
name="name",
use="use",
ifcVersion="version",
ifcVersion="IFC4",
identifier="identifier",
description="description",
instructions="instructions",
@@ -241,7 +241,7 @@ class TestIdsAuthoring(unittest.TestCase):
assert spec.asdict() == {
"@name": "name",
"@use": "use",
"@ifcVersion": "version",
"@ifcVersion": "IFC4",
"@identifier": "identifier",
"@description": "description",
"@instructions": "instructions",