-
Notifications
You must be signed in to change notification settings - Fork 14
/
unknown_variable.feature
120 lines (104 loc) · 2.69 KB
/
unknown_variable.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
@disableUnknownVariable
Feature: Unknown Variable
As a Business Analyst
I want to be warned about unknown variables
so that I can delete them if they are not defined anymore
Background: Prepare Testee
Given a file named "lint.rb" with:
"""
$LOAD_PATH << '../../lib'
require 'gherkin_lint'
linter = GherkinLint::GherkinLint.new
linter.enable %w(UnknownVariable)
linter.set_linter
linter.analyze 'lint.feature'
exit linter.report
"""
Scenario: Unknown Step Variable
Given a file named "lint.feature" with:
"""
Feature: Test
Scenario Outline: A
When <baz> and <bar>
Examples: Values
| bar |
| 1 |
"""
When I run `ruby lint.rb`
Then it should fail with exactly:
"""
UnknownVariable - '<baz>' is unknown
lint.feature (2): Test.A
"""
Scenario: Unknown Step Variable Even For Missing Examples
Given a file named "lint.feature" with:
"""
Feature: Test
Scenario Outline: A
When <baz> and <bar>
"""
When I run `ruby lint.rb`
Then it should fail with exactly:
"""
UnknownVariable - '<baz>' is unknown
lint.feature (2): Test.A
UnknownVariable - '<bar>' is unknown
lint.feature (2): Test.A
"""
Scenario: Unknown Table Variable
Given a file named "lint.feature" with:
"""
Feature: Test
Scenario Outline: A
When test
| value |
| <baz> |
Examples: Values
| bar |
| 1 |
"""
When I run `ruby lint.rb`
Then it should fail with exactly:
"""
UnknownVariable - '<baz>' is unknown
lint.feature (2): Test.A
"""
Scenario: Unknown Pystring Variable
Given a file named "lint.feature" with:
"""
Feature: Test
Scenario Outline: A
When test
\"\"\"
<baz>
\"\"\"
Examples: Values
| bar |
| 1 |
"""
When I run `ruby lint.rb`
Then it should fail with exactly:
"""
UnknownVariable - '<baz>' is unknown
lint.feature (2): Test.A
"""
Scenario: Valid Example
Given a file named "lint.feature" with:
"""
Feature: Test
Scenario Outline: A
Given <first>
| value |
| <second> |
When test
\"\"\"
<third>
\"\"\"
Examples: Test
| first | second | third |
| used value | used | also |
"""
When I run `ruby lint.rb`
Then it should pass with exactly:
"""
"""