Security update for permissions_by_term
[yaffs-website] / vendor / behat / gherkin / tests / Behat / Gherkin / Fixtures / etalons / hashes_in_quotes.yml
1 feature:
2   title:        "Some '#quoted' string"
3   language:     en
4   line:         2
5   description:  |-
6     In order to avoid silly mistakes
7     As a "#math" idiot
8     I want to be told the sum of two numbers
9
10   scenarios:
11     -
12       type:     scenario
13       title:    Add two numbers
14       line:     7
15       steps:
16         - { keyword_type: 'Given', type: 'Given',  text: 'I have entered 11 into the calculator',  line: 8 }
17         - { keyword_type: 'Given', type: 'And',    text: 'I have entered 12 into the calculator',  line: 9 }
18         - { keyword_type: 'When',  type: 'When',   text: 'I press "#add"',                         line: 10 }
19         - { keyword_type: 'Then',  type: 'Then',   text: 'the result should be 23 on the screen',  line: 11 }
20
21     -
22       type:     scenario
23       title:    'Div "#two" numbers # as'
24       line:     13
25       steps:
26         - { keyword_type: 'Given', type: 'Given',  text: 'I have entered 10 into the calculator',  line: 14 }
27         - { keyword_type: 'Given', type: 'And',    text: 'I have entered # 2 into the calculator', line: 15 }
28         - { keyword_type: 'When',  type: 'When',   text: 'I press div',                            line: 16 }
29         - { keyword_type: 'Then',  type: 'Then',   text: 'the result should be 5 on the screen',   line: 17 }