diff --git a/test/features/steps/steps.py b/test/features/steps/steps.py index db11372b..1f46d7c1 100644 --- a/test/features/steps/steps.py +++ b/test/features/steps/steps.py @@ -527,6 +527,12 @@ def create_resource_from_params(context, resource_params): if value == "default": value = resource_default_schema _enter_manual_schema(context, value) + elif key == "schema_upload": + if value == "default": + value = "test-resource_schemea.json" + context.execute_steps(u""" + When I attach the file "{0}" to "schema_upload" + """.format(value)) else: context.execute_steps(u""" When I fill in "{0}" with "{1}" if present