expand details BDD tests

There are now minor differences in the output between PHP and
Python versions, so introduce specific tests.
This commit is contained in:
Sarah Hoffmann
2023-02-03 21:59:16 +01:00
parent 3ac70f7cc2
commit b742200442
4 changed files with 97 additions and 12 deletions

View File

@@ -62,3 +62,9 @@ def before_tag(context, tag):
if tag == 'fail-legacy':
if context.config.userdata['TOKENIZER'] == 'legacy':
context.scenario.skip("Not implemented in legacy tokenizer")
if tag == 'v1-api-php-only':
if context.config.userdata['API_ENGINE'] != 'php':
context.scenario.skip("Only valid with PHP version of v1 API.")
if tag == 'v1-api-python-only':
if context.config.userdata['API_ENGINE'] == 'php':
context.scenario.skip("Only valid with Python version of v1 API.")