Files
IfcOpenShell/src/ifcbimtester/bimtester/features/steps/ifcdata_fr.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
273 B
Python
Raw Normal View History

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)