mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-17 14:02:27 +00:00
10 lines
273 B
Python
10 lines
273 B
Python
from behave import step
|
|
|
|
from ifcdata_methods import assert_schema
|
|
from utils import switch_locale
|
|
|
|
@step("Les données IFC doivent utiliser le schéma {schema}")
|
|
def step_impl(context, schema):
|
|
switch_locale(context.localedir, "fr")
|
|
assert_schema(context, schema)
|