Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrections #16

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions source/handbook/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -1736,7 +1736,7 @@ If we also want to set custom `examples`, you could do it as follows:
Scenario(name="my new name", flags=PAUSE_BEFORE,
examples=Examples("x y result", [
(1,2,3), (2,2,4)
], test=test)(x=1, y=1, result=2)
]), test=test)(x=1, y=1, result=2)
```

Similarly, any other attribute of the scenario can be set. If the same attribute
Expand Down Expand Up @@ -2581,7 +2581,7 @@ When custom command line argument parser is defined then the help messages obtai
the description of the custom arguments. For example,

```bash
python3 ./test.py
python3 ./test.py --help
```
```bash
...
Expand Down Expand Up @@ -3888,7 +3888,7 @@ with Scenario("My scenario"):
## Outline

An [Outline] can be defined using [Outline] test definition class or [TestOutline] decorator.
An [Outline] is a sub-type of a [Test] type but can you can change the type
An [Outline] is a sub-type of a [Test] type but you can change the type
by passing it another [Type] or a [Sub-Type] such as [Scenario] or [Suite] etc.

However, because [Outline]s are meant to be called from other tests or used with [Examples]
Expand All @@ -3910,7 +3910,7 @@ outline()

When [Examples] are defined for the [Outline] and an outline is called with no arguments from a test
that is of a higher [Type] than the [Type] of outline itself, then when called, the outline will iterate over all
the examples defined in the [Examples] table. For example,if you run the example above that executes the outline
the examples defined in the [Examples] table. For example, if you run the example above that executes the outline
with no arguments, you will see that the outline iterates over all the examples in the [Examples] table, where
each example, a row in the examples table, defines the values of the arguments for the outline.

Expand Down