├── .github └── workflows │ └── release.yaml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── .gitignore ├── examples.feature ├── examples_dutch.feature ├── examples_outline.feature ├── member_logon_with_examples.feature └── sub │ └── test.feature ├── pyproject.toml ├── requirements.txt └── src └── gherkin2robotframework ├── __init__.py ├── __main__.py ├── dumpgherkin.py └── translation.py /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricekoster/gherkin2robotframework/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricekoster/gherkin2robotframework/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricekoster/gherkin2robotframework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricekoster/gherkin2robotframework/HEAD/README.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | *.robot 2 | *.resource -------------------------------------------------------------------------------- /examples/examples.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricekoster/gherkin2robotframework/HEAD/examples/examples.feature -------------------------------------------------------------------------------- /examples/examples_dutch.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricekoster/gherkin2robotframework/HEAD/examples/examples_dutch.feature -------------------------------------------------------------------------------- /examples/examples_outline.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricekoster/gherkin2robotframework/HEAD/examples/examples_outline.feature -------------------------------------------------------------------------------- /examples/member_logon_with_examples.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricekoster/gherkin2robotframework/HEAD/examples/member_logon_with_examples.feature -------------------------------------------------------------------------------- /examples/sub/test.feature: -------------------------------------------------------------------------------- 1 | Feature: Test 2 | 3 | @Why 4 | Scenario: Nothing 5 | * Yo 6 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricekoster/gherkin2robotframework/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricekoster/gherkin2robotframework/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/gherkin2robotframework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gherkin2robotframework/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricekoster/gherkin2robotframework/HEAD/src/gherkin2robotframework/__main__.py -------------------------------------------------------------------------------- /src/gherkin2robotframework/dumpgherkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricekoster/gherkin2robotframework/HEAD/src/gherkin2robotframework/dumpgherkin.py -------------------------------------------------------------------------------- /src/gherkin2robotframework/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricekoster/gherkin2robotframework/HEAD/src/gherkin2robotframework/translation.py --------------------------------------------------------------------------------