mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-20 15:08:51 +00:00
7 lines
276 B
Python
7 lines
276 B
Python
from behave import step
|
|
|
|
|
|
@step('Alle "{ifc_class}" Bauteile haben das Attribut "{aproperty}" im PSet "{pset}"')
|
|
def step_impl(context, ifc_class, aproperty, pset):
|
|
context.execute_steps(f'* All "{ifc_class}" elements have an "{aproperty}" property in the "{pset}" pset')
|