Security update for permissions_by_term
[yaffs-website] / vendor / behat / gherkin / tests / Behat / Gherkin / Fixtures / etalons / tables.yml
1 feature:
2   title:        A scenario outline
3   language:     en
4   line:         1
5   description:  ~
6
7   scenarios:
8     -
9       type:     outline
10       title:    ~
11       line:     3
12       steps:
13         - { keyword_type: Given, type: Given, text: I add <a> and <b>, line: 4 }
14         -
15           keyword_type: When
16           type:         When
17           text:         I pass a table argument
18           line:         6
19           arguments:
20             -
21               type:   table
22               rows:
23                 7: [foo, bar]
24                 8: [bar, baz]
25         - { keyword_type: Then, type: Then, text: I the result should be <c>, line: 10 }
26         -
27           keyword_type: Then
28           type:         And
29           text:         the table should be properly escaped:
30           line:         12
31           arguments:
32             -
33               type:   table
34               rows:
35                 13: ['|a', b, c]
36                 14: [1, '|2', 3]
37                 15: [2, 3, '|4']
38
39       examples:
40         18: [ a, b, c ]
41         19: [ 1, '|2', 3 ]
42         20: [ 2, 3, 4 ]