-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathdescriptions.feature
52 lines (37 loc) · 1.11 KB
/
descriptions.feature
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Feature: Descriptions everywhere
This is a single line description
Scenario: two lines
This description
has two lines and indented with two spaces
Given the minimalism
Scenario: without indentation
This is a description without indentation
Given the minimalism
Scenario: empty lines in the middle
This description
has an empty line in the middle
Given the minimalism
Scenario: empty lines around
This description
has an empty lines around
Given the minimalism
Scenario: comment after description
This description
has a comment after
# this is a comment
Given the minimalism
Scenario: comment right after description
This description
has a comment right after
# this is another comment
Given the minimalism
Scenario: description with escaped docstring separator
This description has an \"\"\" (escaped docstring sparator)
Given the minimalism
Scenario Outline: scenario outline with a description
This is a scenario outline description
Given the minimalism
Examples: examples with description
This is an examples description
| foo |
| bar |