Skip to content

Commit

Permalink
Fixup tutorial paths imports
Browse files Browse the repository at this point in the history
  • Loading branch information
elchupanebrej committed Jan 30, 2024
1 parent ffe0943 commit e144e8a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 23 deletions.
42 changes: 21 additions & 21 deletions docs/features.rst
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
.. NOTE:: Features below are part of end-to-end test suite; You always could find most specific
use cases of **pytest-bdd-ng** by investigation of its regression
test suite https://github.com/elchupanebrej/pytest-bdd-ng/tree/default/tests

Tutorial launch.feature
!!!!!!!!!!!!!!!!!!!!!!!

.. include:: ../Features/Tutorial launch.feature
:code: gherkin

Gherkin feature launch by pytest.feature
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. include:: ../Features/Gherkin feature launch by pytest.feature
:code: gherkin

Tags for Scenario Outlines examples.feature
###########################################

.. include:: ../Features/Scenario/Outline/Tags for Scenario Outlines examples.feature
:code: gherkin
.. NOTE:: Features below are part of end-to-end test suite; You always could find most specific
use cases of **pytest-bdd-ng** by investigation of its regression
test suite https://github.com/elchupanebrej/pytest-bdd-ng/tree/default/tests

Gherkin feature launch by pytest.feature
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. include:: ../Features/Gherkin feature launch by pytest.feature
:code: gherkin

Tutorial launch.feature
!!!!!!!!!!!!!!!!!!!!!!!

.. include:: ../Features/Tutorial launch.feature
:code: gherkin

Tags for Scenario Outlines examples.feature
###########################################

.. include:: ../Features/Scenario/Outline/Tags for Scenario Outlines examples.feature
:code: gherkin
4 changes: 2 additions & 2 deletions docs/tutorial/tests/steps/library_steps.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import re
from typing import List, Literal

from src.catalog import Book, Catalog

from messages import DataTable, Step # type:ignore[attr-defined]
from pytest_bdd import given, step, then, when

from ...src.catalog import Book, Catalog


def get_books_from_data_table(data_table: DataTable):
# Gherkin data-tables have no title row by default, but we could define them if we want.
Expand Down

0 comments on commit e144e8a

Please sign in to comment.