cucumber 0.4.4 → 0.4.5.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -1
- data/Caliper.yml +5 -0
- data/History.txt +24 -1
- data/Rakefile +1 -1
- data/VERSION.yml +2 -2
- data/cucumber.gemspec +18 -27
- data/cucumber.yml +10 -4
- data/examples/i18n/README.textile +1 -1
- data/examples/i18n/bg/features/consecutive_calculations.feature +1 -1
- data/examples/i18n/bg/features/division.feature +1 -1
- data/examples/i18n/en-lol/Rakefile +1 -3
- data/examples/i18n/en/features/division.feature +4 -4
- data/examples/i18n/et/features/jagamine.feature +1 -1
- data/examples/i18n/fr/features/addition2.feature +17 -0
- data/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +13 -0
- data/examples/i18n/ja/features/step_definitons/calculator_steps.rb +3 -3
- data/examples/i18n/lt/features/addition.feature +2 -2
- data/examples/i18n/lt/features/division.feature +1 -1
- data/examples/i18n/zh-CN/Rakefile +1 -3
- data/examples/i18n/zh-TW/Rakefile +1 -3
- data/examples/tcl/README.textile +11 -0
- data/examples/tcl/Rakefile +6 -0
- data/examples/tcl/features/fibonnacci.feature +17 -0
- data/examples/tcl/features/step_definitions/fib_steps.rb +7 -0
- data/examples/tcl/features/support/env.rb +6 -0
- data/examples/tcl/src/fib.tcl +3 -0
- data/examples/tickets/features/177/1.feature +3 -4
- data/examples/tickets/features/177/2.feature +2 -3
- data/examples/tickets/features/241.feature +2 -3
- data/examples/tickets/features/301/filter_background_tagged_hooks.feature +1 -1
- data/features/cucumber_cli.feature +4 -2
- data/features/custom_formatter.feature +32 -31
- data/features/html_formatter/a.html +319 -102
- data/features/language_help.feature +12 -14
- data/features/support/env.rb +1 -1
- data/features/transform.feature +17 -3
- data/gem_tasks/features.rake +3 -1
- data/lib/cucumber/ast/scenario_outline.rb +1 -1
- data/lib/cucumber/ast/step_invocation.rb +2 -2
- data/lib/cucumber/cli/configuration.rb +2 -17
- data/lib/cucumber/cli/language_help_formatter.rb +1 -1
- data/lib/cucumber/cli/options.rb +5 -4
- data/lib/cucumber/formatter/cucumber.css +198 -82
- data/lib/cucumber/formatter/cucumber.sass +173 -71
- data/lib/cucumber/formatter/html.rb +371 -195
- data/lib/cucumber/formatter/io.rb +33 -0
- data/lib/cucumber/formatter/junit.rb +16 -7
- data/lib/cucumber/formatter/pdf.rb +5 -5
- data/lib/cucumber/formatter/pretty.rb +6 -8
- data/lib/cucumber/formatter/progress.rb +4 -2
- data/lib/cucumber/formatter/rerun.rb +4 -2
- data/lib/cucumber/formatter/steps.rb +2 -2
- data/lib/cucumber/formatter/tag_cloud.rb +6 -2
- data/lib/cucumber/formatter/usage.rb +2 -2
- data/lib/cucumber/languages.yml +205 -281
- data/lib/cucumber/parser/feature.rb +348 -82
- data/lib/cucumber/parser/feature.tt +47 -11
- data/lib/cucumber/parser/i18n.tt +7 -17
- data/lib/cucumber/parser/natural_language.rb +45 -18
- data/lib/cucumber/rb_support/rb_transform.rb +1 -1
- data/lib/cucumber/step_mother.rb +2 -3
- data/lib/cucumber/webrat/element_locator.rb +9 -5
- data/spec/cucumber/cli/options_spec.rb +0 -3
- data/spec/cucumber/formatter/html_spec.rb +15 -2
- data/spec/cucumber/formatter/junit_spec.rb +3 -0
- data/spec/cucumber/treetop_parser/fit_scenario.feature +2 -2
- data/spec/cucumber/treetop_parser/given_scenario.feature +1 -1
- data/spec/cucumber/treetop_parser/multiple_tables.feature +2 -2
- data/spec/cucumber/treetop_parser/test_dos.feature +1 -1
- metadata +17 -26
- data/Manifest.txt +0 -0
- data/lib/cucumber/rails/action_controller.rb +0 -38
- data/lib/cucumber/rails/active_record.rb +0 -30
- data/lib/cucumber/rails/rspec.rb +0 -10
- data/lib/cucumber/rails/test_unit.rb +0 -9
- data/lib/cucumber/rails/world.rb +0 -30
- data/rails_generators/cucumber/USAGE +0 -11
- data/rails_generators/cucumber/cucumber_generator.rb +0 -117
- data/rails_generators/cucumber/templates/cucumber +0 -17
- data/rails_generators/cucumber/templates/cucumber.rake +0 -46
- data/rails_generators/cucumber/templates/cucumber_environment.rb +0 -30
- data/rails_generators/cucumber/templates/env.rb +0 -49
- data/rails_generators/cucumber/templates/paths.rb +0 -27
- data/rails_generators/cucumber/templates/spork_env.rb +0 -57
- data/rails_generators/cucumber/templates/version_check.rb +0 -31
- data/rails_generators/cucumber/templates/webrat_steps.rb +0 -241
- data/rails_generators/feature/USAGE +0 -12
- data/rails_generators/feature/feature_generator.rb +0 -40
- data/rails_generators/feature/templates/feature.erb +0 -31
- data/rails_generators/feature/templates/steps.erb +0 -14
@@ -1,6 +1,5 @@
|
|
1
|
-
Visitors may create an account, but for those who are not already in the
|
2
|
-
system an someone must activate the account for them before it can be used.
|
3
|
-
|
1
|
+
# Visitors may create an account, but for those who are not already in the
|
2
|
+
# system an someone must activate the account for them before it can be used.
|
4
3
|
Feature: Activating an account
|
5
4
|
As a registered, but not yet activated, user
|
6
5
|
I want to be able to activate my account
|
@@ -1,6 +1,5 @@
|
|
1
|
-
Users want to use cucumber, so tests are necessary to verify
|
2
|
-
it is all working as expected
|
3
|
-
|
1
|
+
# Users want to use cucumber, so tests are necessary to verify
|
2
|
+
# it is all working as expected
|
4
3
|
Feature: Using the Console Formatter
|
5
4
|
In order to verify this error
|
6
5
|
I want to run this feature using the progress format
|
@@ -169,7 +169,7 @@ Feature: Cucumber command line
|
|
169
169
|
|
170
170
|
Scenario: Run Norwegian
|
171
171
|
Given I am in i18n/no
|
172
|
-
When I run cucumber -q
|
172
|
+
When I run cucumber -q features
|
173
173
|
Then STDERR should be empty
|
174
174
|
Then it should pass with
|
175
175
|
"""
|
@@ -369,7 +369,8 @@ Feature: Cucumber command line
|
|
369
369
|
|
370
370
|
Scenario: Multiple formatters and outputs
|
371
371
|
When I run cucumber --format progress --out tmp/progress.txt --format pretty --out tmp/pretty.txt --no-source --dry-run features/lots_of_undefined.feature
|
372
|
-
|
372
|
+
Then STDERR should be empty
|
373
|
+
Then "examples/self_test/tmp/progress.txt" should contain
|
373
374
|
"""
|
374
375
|
UUUUU
|
375
376
|
|
@@ -588,6 +589,7 @@ Feature: Cucumber command line
|
|
588
589
|
|
589
590
|
Scenario: Reformat files with --autoformat
|
590
591
|
When I run cucumber --autoformat tmp/formatted features
|
592
|
+
Then STDERR should be empty
|
591
593
|
Then "examples/self_test/tmp/formatted/features/sample.feature" should contain
|
592
594
|
"""
|
593
595
|
# Feature comment
|
@@ -2,6 +2,7 @@ Feature: Custom Formatter
|
|
2
2
|
|
3
3
|
Scenario: count tags
|
4
4
|
When I run cucumber --format Cucumber::Formatter::TagCloud features
|
5
|
+
Then STDERR should be empty
|
5
6
|
Then it should fail with
|
6
7
|
"""
|
7
8
|
| @after_file | @background_tagged_before_on_outline | @four | @lots | @one | @sample_four | @sample_one | @sample_three | @sample_two | @three | @two |
|
@@ -9,38 +10,38 @@ Feature: Custom Formatter
|
|
9
10
|
|
10
11
|
"""
|
11
12
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
13
|
+
Scenario: my own formatter
|
14
|
+
Given a standard Cucumber project directory structure
|
15
|
+
And a file named "features/f.feature" with:
|
16
|
+
"""
|
17
|
+
Feature: i'll use my own
|
18
|
+
Scenario: just print me
|
19
|
+
Given this step works
|
20
|
+
"""
|
21
|
+
And a file named "features/step_definitions/steps.rb" with:
|
22
|
+
"""
|
23
|
+
Given /^this step works$/ do
|
24
|
+
end
|
25
|
+
"""
|
26
|
+
And a file named "features/support/ze/formator.rb" with:
|
27
|
+
"""
|
28
|
+
module Ze
|
29
|
+
class Formator
|
30
|
+
def initialize(step_mother, io, options)
|
31
|
+
@step_mother = step_mother
|
32
|
+
@io = io
|
33
|
+
end
|
33
34
|
|
34
|
-
|
35
|
-
|
36
|
-
end
|
35
|
+
def scenario_name(keyword, name, file_colon_line, source_indent)
|
36
|
+
@io.puts "$ #{name.upcase}"
|
37
37
|
end
|
38
38
|
end
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
39
|
+
end
|
40
|
+
"""
|
41
|
+
When I run cucumber features/f.feature --format Ze::Formator
|
42
|
+
Then STDERR should be empty
|
43
|
+
Then it should pass with
|
44
|
+
"""
|
45
|
+
$ JUST PRINT ME
|
45
46
|
|
46
|
-
|
47
|
+
"""
|
@@ -1,183 +1,400 @@
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta content="text/html;charset=utf-8"/><title>Cucumber</title><style type="text/css"
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns ="http://www.w3.org/1999/xhtml"><head><meta content="text/html;charset=utf-8"/><title>Cucumber</title><style type="text/css">/* cucumber.css is generated from cucumber.sass */
|
2
|
+
/* Regenerate with rake sass */
|
3
|
+
body {
|
4
|
+
font-size: 0px;
|
5
|
+
color: #FFFFFF;
|
6
|
+
margin: 0px;
|
7
|
+
padding: 0px;
|
8
|
+
}
|
2
9
|
|
3
|
-
.cucumber {
|
4
|
-
font
|
5
|
-
font-size: 0.7em;
|
10
|
+
.cucumber, td, th {
|
11
|
+
font: normal 11px "Lucida Grande", Helvetica, sans-serif;
|
6
12
|
background: white;
|
7
|
-
|
13
|
+
color: #000000;
|
14
|
+
}
|
15
|
+
.cucumber #cucumber-header, td #cucumber-header, th #cucumber-header {
|
16
|
+
background: #65C400;
|
17
|
+
color: #FFFFFF;
|
18
|
+
height: 5em;
|
19
|
+
}
|
20
|
+
.cucumber .scenario h3, td .scenario h3, th .scenario h3 {
|
21
|
+
font-size: 11px;
|
22
|
+
padding: 3px;
|
23
|
+
margin: 0;
|
24
|
+
background: #65C400;
|
25
|
+
color: #FFFFFF;
|
26
|
+
font-weight: bold;
|
8
27
|
}
|
9
|
-
.cucumber h1,
|
10
|
-
|
11
|
-
padding:
|
12
|
-
|
28
|
+
.cucumber h1, td h1, th h1 {
|
29
|
+
margin: 0px 10px 0px 10px;
|
30
|
+
padding: 10px;
|
31
|
+
font-family: "Lucida Grande", Helvetica, sans-serif;
|
32
|
+
font-size: 1.8em;
|
33
|
+
position: absolute;
|
13
34
|
}
|
14
|
-
.cucumber
|
15
|
-
|
16
|
-
padding: 2px;
|
17
|
-
margin: 4px;
|
35
|
+
.cucumber h4, td h4, th h4 {
|
36
|
+
margin-bottom: 2px;
|
18
37
|
}
|
19
|
-
.cucumber div.feature
|
20
|
-
padding:
|
38
|
+
.cucumber div.feature, td div.feature, th div.feature {
|
39
|
+
padding: 2px;
|
40
|
+
margin: 0px 10px 5px 10px;
|
21
41
|
}
|
22
|
-
.cucumber div.
|
42
|
+
.cucumber div.examples, td div.examples, th div.examples {
|
23
43
|
padding: 0em 0em 0em 1em;
|
24
44
|
}
|
25
|
-
.cucumber .stats {
|
45
|
+
.cucumber .stats, td .stats, th .stats {
|
26
46
|
margin: 2em;
|
27
47
|
}
|
28
|
-
.cucumber .summary ul.features li {
|
48
|
+
.cucumber .summary ul.features li, td .summary ul.features li, th .summary ul.features li {
|
29
49
|
display: inline;
|
30
50
|
}
|
31
|
-
.cucumber .
|
51
|
+
.cucumber .tag, td .tag, th .tag {
|
52
|
+
font-weight: bold;
|
53
|
+
color: #246AC1;
|
54
|
+
}
|
55
|
+
.cucumber .backtrace, td .backtrace, th .backtrace {
|
32
56
|
margin-top: 0;
|
33
57
|
margin-bottom: 0;
|
34
58
|
margin-left: 1em;
|
59
|
+
color: #000000;
|
35
60
|
}
|
36
|
-
.cucumber a {
|
61
|
+
.cucumber a, td a, th a {
|
37
62
|
text-decoration: none;
|
38
|
-
color:
|
63
|
+
color: #BE5C00;
|
39
64
|
}
|
40
|
-
.cucumber a:hover {
|
65
|
+
.cucumber a:hover, td a:hover, th a:hover {
|
41
66
|
text-decoration: underline;
|
42
67
|
}
|
43
|
-
.cucumber a:visited {
|
68
|
+
.cucumber a:visited, td a:visited, th a:visited {
|
44
69
|
font-weight: normal;
|
45
70
|
}
|
46
|
-
.cucumber a div.examples {
|
47
|
-
|
48
|
-
|
49
|
-
|
71
|
+
.cucumber a div.examples, td a div.examples, th a div.examples {
|
72
|
+
margin: 5px 0px 5px 15px;
|
73
|
+
color: #000000;
|
74
|
+
}
|
75
|
+
.cucumber .outline table, td .outline table, th .outline table {
|
76
|
+
margin: 0px 0px 5px 10px;
|
50
77
|
}
|
51
|
-
.cucumber table {
|
78
|
+
.cucumber table, td table, th table {
|
52
79
|
border-collapse: collapse;
|
53
80
|
}
|
54
|
-
.cucumber table td,
|
55
|
-
|
56
|
-
border: 1px solid #AAAAAA;
|
81
|
+
.cucumber table td, td table td, th table td {
|
82
|
+
padding: 3px 3px 3px 5px;
|
57
83
|
}
|
58
|
-
.cucumber table td.failed {
|
59
|
-
|
60
|
-
|
84
|
+
.cucumber table td.failed, .cucumber table td.passed, .cucumber table td.skipped, .cucumber table td.pending, .cucumber table td.undefined, td table td.failed, td table td.passed, td table td.skipped, td table td.pending, td table td.undefined, th table td.failed, th table td.passed, th table td.skipped, th table td.pending, th table td.undefined {
|
85
|
+
padding-left: 18px;
|
86
|
+
padding-right: 10px;
|
61
87
|
}
|
62
|
-
.cucumber table td.
|
63
|
-
|
64
|
-
|
88
|
+
.cucumber table td.failed, td table td.failed, th table td.failed {
|
89
|
+
border-left: 5px solid #c20000;
|
90
|
+
border-bottom: 1px solid #c20000;
|
91
|
+
background: #fffbd3;
|
92
|
+
color: #c20000;
|
93
|
+
}
|
94
|
+
.cucumber table td.passed, td table td.passed, th table td.passed {
|
95
|
+
border-left: 5px solid #65c400;
|
96
|
+
border-bottom: 1px solid #65c400;
|
97
|
+
background: #dbffb4;
|
98
|
+
color: #3d7700;
|
65
99
|
}
|
66
|
-
.cucumber table td.skipped {
|
100
|
+
.cucumber table td.skipped, td table td.skipped, th table td.skipped {
|
101
|
+
border-left: 5px solid aqua;
|
102
|
+
border-bottom: 1px solid aqua;
|
67
103
|
background: #e0ffff;
|
68
104
|
color: #001111;
|
69
105
|
}
|
70
|
-
.cucumber table td.pending {
|
71
|
-
|
72
|
-
|
106
|
+
.cucumber table td.pending, td table td.pending, th table td.pending {
|
107
|
+
border-left: 5px solid #faf834;
|
108
|
+
border-bottom: 1px solid #faf834;
|
109
|
+
background: #fcfb98;
|
110
|
+
color: #131313;
|
73
111
|
}
|
74
|
-
.cucumber table td.undefined {
|
75
|
-
|
76
|
-
|
112
|
+
.cucumber table td.undefined, td table td.undefined, th table td.undefined {
|
113
|
+
border-left: 5px solid #faf834;
|
114
|
+
border-bottom: 1px solid #faf834;
|
115
|
+
background: #fcfb98;
|
116
|
+
color: #131313;
|
77
117
|
}
|
78
|
-
.cucumber ol {
|
118
|
+
.cucumber ol, td ol, th ol {
|
79
119
|
list-style: none;
|
120
|
+
margin: 0px;
|
121
|
+
padding: 0px;
|
80
122
|
}
|
81
|
-
.cucumber ol li {
|
123
|
+
.cucumber ol li.step, td ol li.step, th ol li.step {
|
124
|
+
padding: 3px 3px 3px 18px;
|
125
|
+
margin: 5px 0px 5px 5px;
|
126
|
+
}
|
127
|
+
.cucumber ol li, td ol li, th ol li {
|
82
128
|
margin: 0em 0em 0em 1em;
|
83
129
|
padding: 0em 0em 0em 0.2em;
|
84
130
|
}
|
85
|
-
.cucumber ol li span.param {
|
131
|
+
.cucumber ol li span.param, td ol li span.param, th ol li span.param {
|
86
132
|
font-weight: bold;
|
87
133
|
}
|
88
|
-
.cucumber ol li.failed {
|
89
|
-
border-left: 5px solid #
|
90
|
-
border-bottom: 1px solid #
|
91
|
-
background: #
|
92
|
-
color: #
|
134
|
+
.cucumber ol li.failed, td ol li.failed, th ol li.failed {
|
135
|
+
border-left: 5px solid #c20000;
|
136
|
+
border-bottom: 1px solid #c20000;
|
137
|
+
background: #fffbd3;
|
138
|
+
color: #c20000;
|
139
|
+
}
|
140
|
+
.cucumber ol li.passed, td ol li.passed, th ol li.passed {
|
141
|
+
border-left: 5px solid #65c400;
|
142
|
+
border-bottom: 1px solid #65c400;
|
143
|
+
background: #dbffb4;
|
144
|
+
color: #3d7700;
|
145
|
+
}
|
146
|
+
.cucumber ol li.skipped, td ol li.skipped, th ol li.skipped {
|
147
|
+
border-left: 5px solid aqua;
|
148
|
+
border-bottom: 1px solid aqua;
|
149
|
+
background: #e0ffff;
|
150
|
+
color: #001111;
|
93
151
|
}
|
94
|
-
.cucumber ol li.
|
95
|
-
|
152
|
+
.cucumber ol li.pending, td ol li.pending, th ol li.pending {
|
153
|
+
border-left: 5px solid #faf834;
|
154
|
+
border-bottom: 1px solid #faf834;
|
155
|
+
background: #fcfb98;
|
156
|
+
color: #131313;
|
96
157
|
}
|
97
|
-
.cucumber ol li.
|
98
|
-
border-left: 5px solid #
|
99
|
-
border-bottom: 1px solid #
|
100
|
-
background: #
|
101
|
-
color: #
|
158
|
+
.cucumber ol li.undefined, td ol li.undefined, th ol li.undefined {
|
159
|
+
border-left: 5px solid #faf834;
|
160
|
+
border-bottom: 1px solid #faf834;
|
161
|
+
background: #fcfb98;
|
162
|
+
color: #131313;
|
102
163
|
}
|
103
|
-
.cucumber
|
104
|
-
|
164
|
+
.cucumber #summary, td #summary, th #summary {
|
165
|
+
margin: 0px;
|
166
|
+
padding: 5px 10px;
|
167
|
+
text-align: right;
|
168
|
+
top: 0px;
|
169
|
+
right: 0px;
|
170
|
+
float: right;
|
105
171
|
}
|
106
|
-
.cucumber
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
172
|
+
.cucumber #summary p, td #summary p, th #summary p {
|
173
|
+
margin: 0 0 0 2px;
|
174
|
+
}
|
175
|
+
.cucumber #summary #totals, td #summary #totals, th #summary #totals {
|
176
|
+
font-size: 1.2em;
|
177
|
+
}
|
178
|
+
|
179
|
+
.ruby {
|
180
|
+
font-size: 12px;
|
181
|
+
font-family: monospace;
|
182
|
+
color: white;
|
183
|
+
background: black;
|
184
|
+
padding: 0.1em 0 0.2em 0;
|
185
|
+
}
|
186
|
+
.ruby .keyword {
|
187
|
+
color: #FF6600;
|
188
|
+
}
|
189
|
+
.ruby .constant {
|
190
|
+
color: #339999;
|
191
|
+
}
|
192
|
+
.ruby .attribute {
|
193
|
+
color: white;
|
194
|
+
}
|
195
|
+
.ruby .global {
|
196
|
+
color: white;
|
111
197
|
}
|
112
|
-
.
|
113
|
-
|
198
|
+
.ruby .module {
|
199
|
+
color: white;
|
114
200
|
}
|
115
|
-
.
|
116
|
-
|
117
|
-
border-bottom: 1px solid #ff8000;
|
118
|
-
background: #ffff00;
|
119
|
-
color: #2a1b0a;
|
201
|
+
.ruby .class {
|
202
|
+
color: white;
|
120
203
|
}
|
121
|
-
.
|
122
|
-
|
204
|
+
.ruby .string {
|
205
|
+
color: #66FF00;
|
123
206
|
}
|
124
|
-
.
|
125
|
-
|
126
|
-
border-bottom: 1px solid #ff8000;
|
127
|
-
background: #ffff00;
|
128
|
-
color: #2a1b0a;
|
207
|
+
.ruby .ident {
|
208
|
+
color: white;
|
129
209
|
}
|
130
|
-
.
|
131
|
-
|
210
|
+
.ruby .method {
|
211
|
+
color: #FFCC00;
|
132
212
|
}
|
133
|
-
|
213
|
+
.ruby .number {
|
214
|
+
color: white;
|
215
|
+
}
|
216
|
+
.ruby .char {
|
217
|
+
color: white;
|
218
|
+
}
|
219
|
+
.ruby .comment {
|
220
|
+
color: #9933CC;
|
221
|
+
}
|
222
|
+
.ruby .symbol {
|
223
|
+
color: white;
|
224
|
+
}
|
225
|
+
.ruby .regex {
|
226
|
+
color: #44B4CC;
|
227
|
+
}
|
228
|
+
.ruby .punct {
|
229
|
+
color: white;
|
230
|
+
}
|
231
|
+
.ruby .escape {
|
232
|
+
color: white;
|
233
|
+
}
|
234
|
+
.ruby .interp {
|
235
|
+
color: white;
|
236
|
+
}
|
237
|
+
.ruby .expr {
|
238
|
+
color: white;
|
239
|
+
}
|
240
|
+
.ruby .offending {
|
241
|
+
background: #333333;
|
242
|
+
}
|
243
|
+
.ruby .linenum {
|
244
|
+
width: 75px;
|
245
|
+
padding: 0.1em 1em 0.2em 0;
|
246
|
+
color: #000000;
|
247
|
+
background: #FFFBD3;
|
248
|
+
}
|
249
|
+
</style><script type="text/javascript"> function moveProgressBar(percentDone) {
|
250
|
+
document.getElementById("cucumber-header").style.width = percentDone +"%";
|
251
|
+
}
|
252
|
+
function makeRed(element_id) {
|
253
|
+
document.getElementById(element_id).style.background = '#C40D0D';
|
254
|
+
document.getElementById(element_id).style.color = '#FFFFFF';
|
255
|
+
}
|
256
|
+
|
257
|
+
function makeYellow(element_id) {
|
258
|
+
document.getElementById(element_id).style.background = '#FAF834';
|
259
|
+
document.getElementById(element_id).style.color = '#000000';
|
260
|
+
}
|
261
|
+
</script></head><body><!-- Step count 169--><div class="cucumber"><div id="cucumber-header"><div id="label"><h1>Cucumber Features</h1></div><div id="summary"><p id="totals"></p><p id="duration"></p></div></div><div class="feature"><span class="tag">@background_tagged_before_on_outline</span><h2><span class="val">Feature: Background tagged Before on Outline</span></h2><p class="narrative"></p><div class="background"><h3><span class="keyword">Background:</span> <span class="val"></span></h3><ol><li id='features_background_background_tagged_before_on_outline_feature_5' class='step passed'><div><span class="keyword">Given</span> <span class="step val">passing without a table</span></div></li> <script type="text/javascript">moveProgressBar('0.5');</script></ol></div><div class='scenario outline'><h3 id="scenario_1"><span class="keyword">Scenario Outline:</span> <span class="val">passing background</span></h3><ol><li id='features_background_background_tagged_before_on_outline_feature_8' class='step skipped'><div><span class="keyword">Then</span> <span class="step val">I should have '<count>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('1.1');</script></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr class='step' id='row_11'><th class="step skipped_param" id="row_11_0"><div><span class="step param">count</span></div></th></tr> <script type="text/javascript">moveProgressBar('1.7');</script><tr class='step' id='row_12'><td class="step passed" id="row_12_0"><div><span class="step param">888</span></div></td></tr> <script type="text/javascript">moveProgressBar('2.3');</script></table></div></div></div><div class="feature"><h2><span class="val">Feature: background with name</span></h2><p class="narrative"></p><div class="background"><h3><span class="keyword">Background:</span> <span class="val">I'm a background and I'm ok</span></h3><ol><li id='features_background_background_with_name_feature_4' class='step passed'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">10</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('2.9');</script></ol></div><div class='scenario'><h3 id="scenario_2"><span class="keyword">Scenario:</span> <span class="val">example</span></h3><ol> <script type="text/javascript">moveProgressBar('3.5');</script><li id='features_background_background_with_name_feature_7' class='step passed'><div><span class="keyword">Then</span> <span class="step val">I should have '<span class="param">10</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('4.1');</script></ol></div></div><div class="feature"><span class="tag">@after_file</span><h2><span class="val">Feature: Failing background sample</span></h2><p class="narrative"></p><div class="background"><h3><span class="keyword">Background:</span> <span class="val"></span></h3><ol><script>makeRed('cucumber-header');makeRed('scenario_2');</script><li id='features_background_failing_background_feature_5' class='step failed'><div><span class="keyword">Given</span> <span class="step val">failing without a table</span></div><div class="message"><pre>FAIL</pre></div><div class="backtrace"><pre>./features/step_definitions/sample_steps.rb:2:in `flunker'
|
262
|
+
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
263
|
+
features/background/failing_background.feature:5:in `Given failing without a table':in `flunker'
|
264
|
+
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
265
|
+
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
266
|
+
features/background/failing_background.feature:5:in `Given failing without a table':in `/^failing without a table$/'
|
267
|
+
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
268
|
+
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
269
|
+
features/background/failing_background.feature:5:in `Given failing without a table':in `Given failing without a table'</pre></div><pre class="ruby"><code><span class="linenum">0</span><span class="keyword">def </span><span class="method">flunker</span>
|
270
|
+
<span class="linenum">1</span> <span class="keyword">raise</span> <span class="punct">"</span><span class="string">FAIL</span><span class="punct">"</span>
|
271
|
+
<span class="offending"><span class="linenum">2</span><span class="keyword">end</span></span></code></pre></li> <script type="text/javascript">moveProgressBar('4.7');</script><li id='features_background_failing_background_feature_6' class='step skipped'><div><span class="keyword">And</span> <span class="step val">'<span class="param">10</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('5.3');</script></ol></div><div class='scenario'><h3 id="scenario_3"><span class="keyword">Scenario:</span> <span class="val">failing background</span></h3><ol><div class="message"><pre>FAIL</pre></div><div class="backtrace"><pre>./features/step_definitions/sample_steps.rb:2:in `flunker'
|
272
|
+
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
273
|
+
features/background/failing_background.feature:5:in `Given failing without a table':in `flunker'
|
274
|
+
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
275
|
+
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
276
|
+
features/background/failing_background.feature:5:in `Given failing without a table':in `/^failing without a table$/'
|
134
277
|
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
135
278
|
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
136
|
-
features/background/failing_background.feature:5:in `Given failing without a table'
|
279
|
+
features/background/failing_background.feature:5:in `Given failing without a table':in `Given failing without a table'</pre></div><pre class="ruby"><code><span class="linenum">0</span><span class="keyword">def </span><span class="method">flunker</span>
|
280
|
+
<span class="linenum">1</span> <span class="keyword">raise</span> <span class="punct">"</span><span class="string">FAIL</span><span class="punct">"</span>
|
281
|
+
<span class="offending"><span class="linenum">2</span><span class="keyword">end</span></span></code></pre> <script type="text/javascript">moveProgressBar('5.9');</script> <script type="text/javascript">moveProgressBar('6.5');</script><li id='features_background_failing_background_feature_9' class='step skipped'><div><span class="keyword">Then</span> <span class="step val">I should have '<span class="param">10</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('7.1');</script></ol></div><div class='scenario'><h3 id="scenario_4"><span class="keyword">Scenario:</span> <span class="val">another failing background</span></h3><ol> <script type="text/javascript">moveProgressBar('7.6');</script> <script type="text/javascript">moveProgressBar('8.2');</script><li id='features_background_failing_background_feature_12' class='step skipped'><div><span class="keyword">Then</span> <span class="step val">I should have '<span class="param">10</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('8.8');</script></ol></div></div><div class="feature"><h2><span class="val">Feature: Failing background after previously successful background sample</span></h2><p class="narrative"></p><div class="background"><h3><span class="keyword">Background:</span> <span class="val"></span></h3><ol><li id='features_background_failing_background_after_success_feature_4' class='step passed'><div><span class="keyword">Given</span> <span class="step val">passing without a table</span></div></li> <script type="text/javascript">moveProgressBar('9.4');</script><li id='features_background_failing_background_after_success_feature_5' class='step passed'><div><span class="keyword">And</span> <span class="step val">'<span class="param">10</span>' global cukes</span></div></li> <script type="text/javascript">moveProgressBar('10.0');</script></ol></div><div class='scenario'><h3 id="scenario_5"><span class="keyword">Scenario:</span> <span class="val">passing background</span></h3><ol> <script type="text/javascript">moveProgressBar('10.6');</script> <script type="text/javascript">moveProgressBar('11.2');</script><li id='features_background_failing_background_after_success_feature_8' class='step passed'><div><span class="keyword">Then</span> <span class="step val">I should have '<span class="param">10</span>' global cukes</span></div></li> <script type="text/javascript">moveProgressBar('11.8');</script></ol></div><div class='scenario'><h3 id="scenario_6"><span class="keyword">Scenario:</span> <span class="val">failing background</span></h3><ol> <script type="text/javascript">moveProgressBar('12.4');</script><script>makeRed('scenario_6');</script><li id='features_background_failing_background_after_success_feature_5' class='step failed'><div class="message"><pre>FAIL</pre></div><div class="backtrace"><pre>./features/step_definitions/sample_steps.rb:2:in `flunker'
|
282
|
+
./features/step_definitions/sample_steps.rb:37:in `/^'(.+)' global cukes$/'
|
283
|
+
features/background/failing_background_after_success.feature:5:in `And '10' global cukes':in `flunker'
|
284
|
+
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
285
|
+
./features/step_definitions/sample_steps.rb:37:in `/^'(.+)' global cukes$/'
|
286
|
+
features/background/failing_background_after_success.feature:5:in `And '10' global cukes':in `/^'(.+)' global cukes$/'
|
137
287
|
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
138
288
|
./features/step_definitions/sample_steps.rb:37:in `/^'(.+)' global cukes$/'
|
139
|
-
features/background/failing_background_after_success.feature:5:in `And '10' global cukes'
|
289
|
+
features/background/failing_background_after_success.feature:5:in `And '10' global cukes':in `And '10' global cukes'</pre></div><pre class="ruby"><code><span class="linenum">0</span><span class="keyword">def </span><span class="method">flunker</span>
|
290
|
+
<span class="linenum">1</span> <span class="keyword">raise</span> <span class="punct">"</span><span class="string">FAIL</span><span class="punct">"</span>
|
291
|
+
<span class="offending"><span class="linenum">2</span><span class="keyword">end</span></span></code></pre></li> <script type="text/javascript">moveProgressBar('13.0');</script><li id='features_background_failing_background_after_success_feature_11' class='step skipped'><div><span class="keyword">Then</span> <span class="step val">I should have '<span class="param">10</span>' global cukes</span></div></li> <script type="text/javascript">moveProgressBar('13.6');</script></ol></div></div><div class="feature"><h2><span class="val">Feature: Passing background with multiline args</span></h2><p class="narrative"></p><div class="background"><h3><span class="keyword">Background:</span> <span class="val"></span></h3><ol><li id='features_background_multiline_args_background_feature_4' class='step passed'><div><span class="keyword">Given</span> <span class="step val">table</span></div><table><tr class='step' id='row_5'><td class="step" id="row_5_0"><div><span class="step param">a</span></div></td><td class="step" id="row_5_1"><div><span class="step param">b</span></div></td></tr> <script type="text/javascript">moveProgressBar('14.7');</script><tr class='step' id='row_6'><td class="step" id="row_6_0"><div><span class="step param">c</span></div></td><td class="step" id="row_6_1"><div><span class="step param">d</span></div></td></tr> <script type="text/javascript">moveProgressBar('15.3');</script></table></li> <script type="text/javascript">moveProgressBar('15.3');</script><li id='features_background_multiline_args_background_feature_7' class='step passed'><div><span class="keyword">And</span> <span class="step val">multiline string</span></div><pre class="val"> I'm a cucumber and I'm okay. 
 I sleep all night and I test all day</pre></li> <script type="text/javascript">moveProgressBar('15.9');</script></ol></div><div class='scenario'><h3 id="scenario_7"><span class="keyword">Scenario:</span> <span class="val">passing background</span></h3><ol> <script type="text/javascript">moveProgressBar('16.5');</script> <script type="text/javascript">moveProgressBar('17.1');</script><li id='features_background_multiline_args_background_feature_14' class='step passed'><div><span class="keyword">Then</span> <span class="step val">the table should be</span></div><table><tr class='step' id='row_15'><td class="step" id="row_15_0"><div><span class="step param">a</span></div></td><td class="step" id="row_15_1"><div><span class="step param">b</span></div></td></tr> <script type="text/javascript">moveProgressBar('18.3');</script><tr class='step' id='row_16'><td class="step" id="row_16_0"><div><span class="step param">c</span></div></td><td class="step" id="row_16_1"><div><span class="step param">d</span></div></td></tr> <script type="text/javascript">moveProgressBar('18.9');</script></table></li> <script type="text/javascript">moveProgressBar('18.9');</script><li id='features_background_multiline_args_background_feature_17' class='step passed'><div><span class="keyword">Then</span> <span class="step val">the multiline string should be</span></div><pre class="val"> I'm a cucumber and I'm okay. 
 I sleep all night and I test all day</pre></li> <script type="text/javascript">moveProgressBar('19.5');</script></ol></div><div class='scenario'><h3 id="scenario_8"><span class="keyword">Scenario:</span> <span class="val">another passing background</span></h3><ol> <script type="text/javascript">moveProgressBar('20.1');</script> <script type="text/javascript">moveProgressBar('20.7');</script><li id='features_background_multiline_args_background_feature_24' class='step passed'><div><span class="keyword">Then</span> <span class="step val">the table should be</span></div><table><tr class='step' id='row_25'><td class="step" id="row_25_0"><div><span class="step param">a</span></div></td><td class="step" id="row_25_1"><div><span class="step param">b</span></div></td></tr> <script type="text/javascript">moveProgressBar('21.8');</script><tr class='step' id='row_26'><td class="step" id="row_26_0"><div><span class="step param">c</span></div></td><td class="step" id="row_26_1"><div><span class="step param">d</span></div></td></tr> <script type="text/javascript">moveProgressBar('22.4');</script></table></li> <script type="text/javascript">moveProgressBar('22.4');</script><li id='features_background_multiline_args_background_feature_27' class='step passed'><div><span class="keyword">Then</span> <span class="step val">the multiline string should be</span></div><pre class="val"> I'm a cucumber and I'm okay. 
 I sleep all night and I test all day</pre></li> <script type="text/javascript">moveProgressBar('23.0');</script></ol></div></div><div class="feature"><h2><span class="val">Feature: Passing background sample</span></h2><p class="narrative"></p><div class="background"><h3><span class="keyword">Background:</span> <span class="val"></span></h3><ol><li id='features_background_passing_background_feature_4' class='step passed'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">10</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('23.6');</script></ol></div><div class='scenario'><h3 id="scenario_9"><span class="keyword">Scenario:</span> <span class="val">passing background</span></h3><ol> <script type="text/javascript">moveProgressBar('24.2');</script><li id='features_background_passing_background_feature_7' class='step passed'><div><span class="keyword">Then</span> <span class="step val">I should have '<span class="param">10</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('24.8');</script></ol></div><div class='scenario'><h3 id="scenario_10"><span class="keyword">Scenario:</span> <span class="val">another passing background</span></h3><ol> <script type="text/javascript">moveProgressBar('25.4');</script><li id='features_background_passing_background_feature_10' class='step passed'><div><span class="keyword">Then</span> <span class="step val">I should have '<span class="param">10</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('26.0');</script></ol></div></div><div class="feature"><h2><span class="val">Feature: Pending background sample</span></h2><p class="narrative"></p><div class="background"><h3><span class="keyword">Background:</span> <span class="val"></span></h3><ol><script>makeYellow('scenario_10');</script><li id='features_background_pending_background_feature_4' class='step undefined'><div><span class="keyword">Given</span> <span class="step val">pending</span></div><pre>Given /^pending$/ do
|
292
|
+
pending # express the regexp above with the code you wish you had
|
293
|
+
end</pre></li> <script type="text/javascript">moveProgressBar('26.6');</script></ol></div><div class='scenario'><h3 id="scenario_11"><span class="keyword">Scenario:</span> <span class="val">pending background</span></h3><ol> <script type="text/javascript">moveProgressBar('27.2');</script><li id='features_background_pending_background_feature_7' class='step skipped'><div><span class="keyword">Then</span> <span class="step val">I should have '<span class="param">10</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('27.8');</script></ol></div><div class='scenario'><h3 id="scenario_12"><span class="keyword">Scenario:</span> <span class="val">another pending background</span></h3><ol> <script type="text/javascript">moveProgressBar('28.4');</script><li id='features_background_pending_background_feature_10' class='step skipped'><div><span class="keyword">Then</span> <span class="step val">I should have '<span class="param">10</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('28.9');</script></ol></div></div><div class="feature"><h2><span class="val">Feature: Failing background with scenario outlines sample</span></h2><p class="narrative"></p><div class="background"><h3><span class="keyword">Background:</span> <span class="val"></span></h3><ol><script>makeRed('scenario_12');</script><li id='features_background_scenario_outline_failing_background_feature_4' class='step failed'><div><span class="keyword">Given</span> <span class="step val">failing without a table</span></div><div class="message"><pre>FAIL</pre></div><div class="backtrace"><pre>./features/step_definitions/sample_steps.rb:2:in `flunker'
|
294
|
+
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
295
|
+
features/background/scenario_outline_failing_background.feature:4:in `Given failing without a table':in `flunker'
|
140
296
|
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
141
297
|
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
142
|
-
features/background/scenario_outline_failing_background.feature:4:in `Given failing without a table'
|
298
|
+
features/background/scenario_outline_failing_background.feature:4:in `Given failing without a table':in `/^failing without a table$/'
|
143
299
|
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
144
300
|
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
145
|
-
features/background/scenario_outline_failing_background.feature:4:in `Given failing without a table'
|
301
|
+
features/background/scenario_outline_failing_background.feature:4:in `Given failing without a table':in `Given failing without a table'</pre></div><pre class="ruby"><code><span class="linenum">0</span><span class="keyword">def </span><span class="method">flunker</span>
|
302
|
+
<span class="linenum">1</span> <span class="keyword">raise</span> <span class="punct">"</span><span class="string">FAIL</span><span class="punct">"</span>
|
303
|
+
<span class="offending"><span class="linenum">2</span><span class="keyword">end</span></span></code></pre></li> <script type="text/javascript">moveProgressBar('29.5');</script></ol></div><div class='scenario outline'><h3 id="scenario_13"><span class="keyword">Scenario Outline:</span> <span class="val">failing background</span></h3><ol><li id='features_background_scenario_outline_failing_background_feature_7' class='step skipped'><div><span class="keyword">Then</span> <span class="step val">I should have '<count>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('30.1');</script></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr class='step' id='row_9'><th class="step skipped_param" id="row_9_0"><div><span class="step param">count</span></div></th></tr> <script type="text/javascript">moveProgressBar('30.7');</script><tr class='step' id='row_10'><td class="step skipped" id="row_10_0"><div><span class="step param">10</span></div></td></tr><tr><td class="failed" colspan="1"><pre>FAIL
|
304
|
+
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
305
|
+
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
306
|
+
features/background/scenario_outline_failing_background.feature:4:in `Given failing without a table'</pre></td></tr> <script type="text/javascript">moveProgressBar('31.3');</script></table></div></div><div class='scenario outline'><h3 id="scenario_14"><span class="keyword">Scenario Outline:</span> <span class="val">another failing background</span></h3><ol><li id='features_background_scenario_outline_failing_background_feature_13' class='step skipped'><div><span class="keyword">Then</span> <span class="step val">I should have '<count>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('31.9');</script></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr class='step' id='row_15'><th class="step skipped_param" id="row_15_0"><div><span class="step param">count</span></div></th></tr> <script type="text/javascript">moveProgressBar('32.5');</script><tr class='step' id='row_16'><td class="step skipped" id="row_16_0"><div><span class="step param">10</span></div></td></tr> <script type="text/javascript">moveProgressBar('33.1');</script></table></div></div></div><div class="feature"><h2><span class="val">Feature: Passing background with scenario outlines sample</span></h2><p class="narrative"></p><div class="background"><h3><span class="keyword">Background:</span> <span class="val"></span></h3><ol><li id='features_background_scenario_outline_passing_background_feature_4' class='step passed'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">10</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('33.7');</script></ol></div><div class='scenario outline'><h3 id="scenario_15"><span class="keyword">Scenario Outline:</span> <span class="val">passing background</span></h3><ol><li id='features_background_scenario_outline_passing_background_feature_7' class='step skipped'><div><span class="keyword">Then</span> <span class="step val">I should have '<count>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('34.3');</script></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr class='step' id='row_9'><th class="step skipped_param" id="row_9_0"><div><span class="step param">count</span></div></th></tr> <script type="text/javascript">moveProgressBar('34.9');</script><tr class='step' id='row_10'><td class="step passed" id="row_10_0"><div><span class="step param">10</span></div></td></tr> <script type="text/javascript">moveProgressBar('35.5');</script></table></div></div><div class='scenario outline'><h3 id="scenario_16"><span class="keyword">Scenario Outline:</span> <span class="val">another passing background</span></h3><ol><li id='features_background_scenario_outline_passing_background_feature_13' class='step skipped'><div><span class="keyword">Then</span> <span class="step val">I should have '<count>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('36.0');</script></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr class='step' id='row_15'><th class="step skipped_param" id="row_15_0"><div><span class="step param">count</span></div></th></tr> <script type="text/javascript">moveProgressBar('36.6');</script><tr class='step' id='row_16'><td class="step passed" id="row_16_0"><div><span class="step param">10</span></div></td></tr> <script type="text/javascript">moveProgressBar('37.2');</script></table></div></div></div><div class="feature"><h2><span class="val">Feature: Calling undefined step</span></h2><p class="narrative"></p><div class='scenario'><h3 id="scenario_17"><span class="keyword">Scenario:</span> <span class="val">Call directly</span></h3><ol><script>makeYellow('scenario_17');</script><li id='features_call_undefined_step_from_step_def_feature_4' class='step undefined'><div><span class="keyword">Given</span> <span class="step val">a step definition that calls an undefined step</span></div><div class="message"><pre>Undefined step: "this does not exist"</pre></div><div class="backtrace"><pre>./features/step_definitions/sample_steps.rb:20:in `/^a step definition that calls an undefined step$/'
|
307
|
+
features/call_undefined_step_from_step_def.feature:4:in `Given a step definition that calls an undefined step':in `/^a step definition that calls an undefined step$/'
|
146
308
|
./features/step_definitions/sample_steps.rb:20:in `/^a step definition that calls an undefined step$/'
|
147
|
-
features/call_undefined_step_from_step_def.feature:4:in `Given a step definition that calls an undefined step'
|
309
|
+
features/call_undefined_step_from_step_def.feature:4:in `Given a step definition that calls an undefined step':in `Given a step definition that calls an undefined step'</pre></div><pre class="ruby"><code><span class="linenum">18</span>
|
310
|
+
<span class="linenum">19</span><span class="constant">Given</span> <span class="punct">/^</span><span class="ident">a</span> <span class="ident">step</span> <span class="ident">definition</span> <span class="ident">that</span> <span class="ident">calls</span> <span class="ident">an</span> <span class="ident">undefined</span> <span class="ident">step</span><span class="global">$/</span> <span class="keyword">do</span>
|
311
|
+
<span class="offending"><span class="linenum">20</span> <span class="constant">Given</span> <span class="punct">'</span><span class="string">this does not exist</span><span class="punct">'</span></span>
|
312
|
+
<span class="linenum">21</span><span class="keyword">end</span></code></pre><pre>Given /^$/ do
|
313
|
+
pending # express the regexp above with the code you wish you had
|
314
|
+
end</pre></li> <script type="text/javascript">moveProgressBar('37.8');</script></ol></div><div class='scenario'><h3 id="scenario_18"><span class="keyword">Scenario:</span> <span class="val">Call via another</span></h3><ol><script>makeYellow('scenario_18');</script><li id='features_call_undefined_step_from_step_def_feature_7' class='step undefined'><div><span class="keyword">Given</span> <span class="step val">call step "<span class="param">a step definition that calls an undefined step</span>"</span></div><div class="message"><pre>Undefined step: "this does not exist"</pre></div><div class="backtrace"><pre>./features/step_definitions/sample_steps.rb:20:in `/^a step definition that calls an undefined step$/'
|
315
|
+
features/call_undefined_step_from_step_def.feature:7:in `Given call step "a step definition that calls an undefined step"':in `/^a step definition that calls an undefined step$/'
|
148
316
|
./features/step_definitions/sample_steps.rb:20:in `/^a step definition that calls an undefined step$/'
|
149
|
-
features/call_undefined_step_from_step_def.feature:7:in `Given call step
|
150
|
-
|
317
|
+
features/call_undefined_step_from_step_def.feature:7:in `Given call step "a step definition that calls an undefined step"':in `Given call step "a step definition that calls an undefined step"'</pre></div><pre class="ruby"><code><span class="linenum">18</span>
|
318
|
+
<span class="linenum">19</span><span class="constant">Given</span> <span class="punct">/^</span><span class="ident">a</span> <span class="ident">step</span> <span class="ident">definition</span> <span class="ident">that</span> <span class="ident">calls</span> <span class="ident">an</span> <span class="ident">undefined</span> <span class="ident">step</span><span class="global">$/</span> <span class="keyword">do</span>
|
319
|
+
<span class="offending"><span class="linenum">20</span> <span class="constant">Given</span> <span class="punct">'</span><span class="string">this does not exist</span><span class="punct">'</span></span>
|
320
|
+
<span class="linenum">21</span><span class="keyword">end</span></code></pre><pre>Given /^$/ do
|
321
|
+
pending # express the regexp above with the code you wish you had
|
322
|
+
end</pre></li> <script type="text/javascript">moveProgressBar('38.4');</script></ol></div></div><div class="feature"><h2><span class="val">Feature: Failing expectation</span></h2><p class="narrative"></p><div class='scenario'><h3 id="scenario_19"><span class="keyword">Scenario:</span> <span class="val">Failing expectation</span></h3><ol><script>makeRed('scenario_19');</script><li id='features_failing_expectation_feature_4' class='step failed'><div><span class="keyword">Given</span> <span class="step val">failing expectation</span></div><div class="message"><pre>expected: "that",
|
323
|
+
got: "this" (using ==)
|
151
324
|
|
152
325
|
Diff:
|
153
326
|
@@ -1,2 +1,2 @@
|
154
327
|
-that
|
155
328
|
+this
|
156
|
-
|
329
|
+
</pre></div><div class="backtrace"><pre>./features/step_definitions/sample_steps.rb:63:in `/^failing expectation$/'
|
330
|
+
features/failing_expectation.feature:4:in `Given failing expectation':in `/^failing expectation$/'
|
157
331
|
./features/step_definitions/sample_steps.rb:63:in `/^failing expectation$/'
|
158
|
-
features/failing_expectation.feature:4:in `Given failing expectation'
|
332
|
+
features/failing_expectation.feature:4:in `Given failing expectation':in `Given failing expectation'</pre></div><pre class="ruby"><code><span class="linenum">61</span>
|
333
|
+
<span class="linenum">62</span><span class="constant">Given</span> <span class="punct">/^</span><span class="ident">failing</span> <span class="ident">expectation</span><span class="global">$/</span> <span class="keyword">do</span>
|
334
|
+
<span class="offending"><span class="linenum">63</span> <span class="punct">'</span><span class="string">this</span><span class="punct">'.</span><span class="ident">should</span> <span class="punct">==</span> <span class="punct">'</span><span class="string">that</span><span class="punct">'</span></span>
|
335
|
+
<span class="linenum">64</span><span class="keyword">end</span></code></pre></li> <script type="text/javascript">moveProgressBar('39.0');</script></ol></div></div><div class="feature"><h2><span class="val">Feature: Lots of undefined</span></h2><p class="narrative"></p><div class='scenario'><h3 id="scenario_20"><span class="keyword">Scenario:</span> <span class="val">Implement me</span></h3><ol><script>makeYellow('scenario_20');</script><li id='features_lots_of_undefined_feature_4' class='step undefined'><div><span class="keyword">Given</span> <span class="step val">it snows in Sahara</span></div><pre>Given /^it snows in Sahara$/ do
|
336
|
+
pending # express the regexp above with the code you wish you had
|
337
|
+
end</pre></li> <script type="text/javascript">moveProgressBar('39.6');</script><script>makeYellow('scenario_20');</script><li id='features_lots_of_undefined_feature_5' class='step undefined'><div><span class="keyword">Given</span> <span class="step val">it's 40 degrees in Norway</span></div><pre>Given /^it's 40 degrees in Norway$/ do
|
338
|
+
pending # express the regexp above with the code you wish you had
|
339
|
+
end</pre></li> <script type="text/javascript">moveProgressBar('40.2');</script><script>makeYellow('scenario_20');</script><li id='features_lots_of_undefined_feature_6' class='step undefined'><div><span class="keyword">And</span> <span class="step val">it's 40 degrees in Norway</span></div><pre>And /^it's 40 degrees in Norway$/ do
|
340
|
+
pending # express the regexp above with the code you wish you had
|
341
|
+
end</pre></li> <script type="text/javascript">moveProgressBar('40.8');</script><script>makeYellow('scenario_20');</script><li id='features_lots_of_undefined_feature_7' class='step undefined'><div><span class="keyword">When</span> <span class="step val">I stop procrastinating</span></div><pre>When /^I stop procrastinating$/ do
|
342
|
+
pending # express the regexp above with the code you wish you had
|
343
|
+
end</pre></li> <script type="text/javascript">moveProgressBar('41.4');</script><script>makeYellow('scenario_20');</script><li id='features_lots_of_undefined_feature_8' class='step undefined'><div><span class="keyword">And</span> <span class="step val">there is world peace</span></div><pre>And /^there is world peace$/ do
|
344
|
+
pending # express the regexp above with the code you wish you had
|
345
|
+
end</pre></li> <script type="text/javascript">moveProgressBar('42.0');</script></ol></div></div><div class="feature"><h2><span class="val">Feature: multiline</span></h2><p class="narrative"></p><div class="background"><h3><span class="keyword">Background:</span> <span class="val">I'm a multiline name
|
159
346
|
which goes on and on and on for three lines
|
160
|
-
yawn</span></h3><ol><li class=
|
347
|
+
yawn</span></h3><ol><li id='features_multiline_name_feature_6' class='step passed'><div><span class="keyword">Given</span> <span class="step val">passing without a table</span></div></li> <script type="text/javascript">moveProgressBar('42.6');</script></ol></div><div class='scenario'><h3 id="scenario_21"><span class="keyword">Scenario:</span> <span class="val">I'm a multiline name
|
161
348
|
which goes on and on and on for three lines
|
162
|
-
yawn</span></h3><ol><li class=
|
349
|
+
yawn</span></h3><ol> <script type="text/javascript">moveProgressBar('43.1');</script><li id='features_multiline_name_feature_11' class='step passed'><div><span class="keyword">Given</span> <span class="step val">passing without a table</span></div></li> <script type="text/javascript">moveProgressBar('43.7');</script></ol></div><div class='scenario outline'><h3 id="scenario_22"><span class="keyword">Scenario Outline:</span> <span class="val">I'm a multiline name
|
163
350
|
which goes on and on and on for three lines
|
164
|
-
yawn</span></h3><ol><li class=
|
351
|
+
yawn</span></h3><ol><li id='features_multiline_name_feature_16' class='step skipped'><div><span class="keyword">Given</span> <span class="step val"><state> without a table</span></div></li> <script type="text/javascript">moveProgressBar('44.3');</script></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr class='step' id='row_18'><th class="step skipped_param" id="row_18_0"><div><span class="step param">state</span></div></th></tr> <script type="text/javascript">moveProgressBar('44.9');</script><tr class='step' id='row_19'><td class="step passed" id="row_19_0"><div><span class="step param">passing</span></div></td></tr> <script type="text/javascript">moveProgressBar('45.5');</script></table></div></div><div class='scenario outline'><h3 id="scenario_23"><span class="keyword">Scenario Outline:</span> <span class="val">name</span></h3><ol><li id='features_multiline_name_feature_22' class='step skipped'><div><span class="keyword">Given</span> <span class="step val"><state> without a table</span></div></li> <script type="text/javascript">moveProgressBar('46.1');</script></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val">I'm a multiline name
|
165
352
|
which goes on and on and on for three lines
|
166
|
-
yawn</span></h4><table><tr id=
|
353
|
+
yawn</span></h4><table><tr class='step' id='row_26'><th class="step skipped_param" id="row_26_0"><div><span class="step param">state</span></div></th></tr> <script type="text/javascript">moveProgressBar('46.7');</script><tr class='step' id='row_27'><td class="step passed" id="row_27_0"><div><span class="step param">passing</span></div></td></tr> <script type="text/javascript">moveProgressBar('47.3');</script></table></div></div></div><div class="feature"><h2><span class="val">Feature: Outline Sample</span></h2><p class="narrative"></p><div class='scenario'><h3 id="scenario_24"><span class="keyword">Scenario:</span> <span class="val">I have no steps</span></h3><ol></ol></div><div class='scenario outline'><h3 id="scenario_25"><span class="keyword">Scenario Outline:</span> <span class="val">Test state</span></h3><ol><li id='features_outline_sample_feature_6' class='step skipped'><div><span class="keyword">Given</span> <span class="step val"><state> without a table</span></div></li> <script type="text/javascript">moveProgressBar('47.9');</script><li id='features_outline_sample_feature_7' class='step skipped'><div><span class="keyword">Given</span> <span class="step val"><other_state> without a table</span></div></li> <script type="text/javascript">moveProgressBar('48.5');</script></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val">Rainbow colours</span></h4><table><tr class='step' id='row_9'><th class="step skipped_param" id="row_9_0"><div><span class="step param">state</span></div></th><th class="step skipped_param" id="row_9_1"><div><span class="step param">other_state</span></div></th></tr> <script type="text/javascript">moveProgressBar('49.1');</script><tr class='step' id='row_10'><td class="step undefined" id="row_10_0"><div><span class="step param">missing</span></div></td><script>makeYellow('scenario_25');</script><td class="step skipped" id="row_10_1"><div><span class="step param">passing</span></div></td></tr> <script type="text/javascript">moveProgressBar('49.7');</script><tr class='step' id='row_11'><td class="step passed" id="row_11_0"><div><span class="step param">passing</span></div></td><td class="step passed" id="row_11_1"><div><span class="step param">passing</span></div></td></tr> <script type="text/javascript">moveProgressBar('50.2');</script><tr class='step' id='row_12'><td class="step failed" id="row_12_0"><div><span class="step param">failing</span></div></td><script>makeRed('scenario_25');</script><td class="step skipped" id="row_12_1"><div><span class="step param">passing</span></div></td></tr><tr><td class="failed" colspan="2"><pre>FAIL
|
167
354
|
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
168
355
|
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
169
|
-
features/outline_sample.feature:6:in `Given
|
356
|
+
features/outline_sample.feature:6:in `Given <state> without a table'</pre></td></tr> <script type="text/javascript">moveProgressBar('50.8');</script></table></div><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val">Only passing</span></h4><table><tr class='step' id='row_14'><th class="step skipped_param" id="row_14_0"><div><span class="step param">state</span></div></th><th class="step skipped_param" id="row_14_1"><div><span class="step param">other_state</span></div></th></tr> <script type="text/javascript">moveProgressBar('51.4');</script><tr class='step' id='row_15'><td class="step passed" id="row_15_0"><div><span class="step param">passing</span></div></td><td class="step passed" id="row_15_1"><div><span class="step param">passing</span></div></td></tr> <script type="text/javascript">moveProgressBar('52.0');</script></table></div></div></div><div class="feature"><pre class="comment"># Feature comment<br/></pre><span class="tag">@one</span><h2><span class="val">Feature: Sample</span></h2><p class="narrative"></p><div class='scenario'><span class="tag">@two</span> <span class="tag">@three</span><h3 id="scenario_26"><span class="keyword">Scenario:</span> <span class="val">Missing</span></h3><ol><script>makeYellow('scenario_26');</script><li id='features_sample_feature_7' class='step undefined'><div><span class="keyword">Given</span> <span class="step val">missing</span></div><pre>Given /^missing$/ do
|
357
|
+
pending # express the regexp above with the code you wish you had
|
358
|
+
end</pre></li> <script type="text/javascript">moveProgressBar('52.6');</script></ol></div><div class='scenario'><pre class="comment"># Scenario comment<br/></pre><span class="tag">@three</span><h3 id="scenario_27"><span class="keyword">Scenario:</span> <span class="val">Passing</span></h3><ol><li id='features_sample_feature_12' class='step passed'><div><span class="keyword">Given</span> <span class="step val">passing</span></div><table><tr class='step' id='row_13'><td class="step" id="row_13_0"><div><span class="step param">a</span></div></td><td class="step" id="row_13_1"><div><span class="step param">b</span></div></td></tr> <script type="text/javascript">moveProgressBar('53.8');</script><tr class='step' id='row_14'><td class="step" id="row_14_0"><div><span class="step param">c</span></div></td><td class="step" id="row_14_1"><div><span class="step param">d</span></div></td></tr> <script type="text/javascript">moveProgressBar('54.4');</script></table></li> <script type="text/javascript">moveProgressBar('54.4');</script></ol></div><div class='scenario'><span class="tag">@four</span><h3 id="scenario_28"><span class="keyword">Scenario:</span> <span class="val">Failing</span></h3><ol><script>makeRed('scenario_28');</script><li id='features_sample_feature_18' class='step failed'><div><span class="keyword">Given</span> <span class="step val">failing</span></div><pre class="val">hello</pre><div class="message"><pre>FAIL</pre></div><div class="backtrace"><pre>./features/step_definitions/sample_steps.rb:2:in `flunker'
|
359
|
+
./features/step_definitions/sample_steps.rb:9:in `/^failing$/'
|
360
|
+
features/sample.feature:18:in `Given failing':in `flunker'
|
361
|
+
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
362
|
+
./features/step_definitions/sample_steps.rb:9:in `/^failing$/'
|
363
|
+
features/sample.feature:18:in `Given failing':in `/^failing$/'
|
170
364
|
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
171
365
|
./features/step_definitions/sample_steps.rb:9:in `/^failing$/'
|
172
|
-
features/sample.feature:18:in `Given failing'
|
366
|
+
features/sample.feature:18:in `Given failing':in `Given failing'</pre></div><pre class="ruby"><code><span class="linenum">0</span><span class="keyword">def </span><span class="method">flunker</span>
|
367
|
+
<span class="linenum">1</span> <span class="keyword">raise</span> <span class="punct">"</span><span class="string">FAIL</span><span class="punct">"</span>
|
368
|
+
<span class="offending"><span class="linenum">2</span><span class="keyword">end</span></span></code></pre></li> <script type="text/javascript">moveProgressBar('55.0');</script></ol></div></div><div class="feature"><h2><span class="val">Feature: search examples</span></h2><p class="narrative"></p><div class="background"><h3><span class="keyword">Background:</span> <span class="val">Hantu Pisang background match</span></h3><ol><li id='features_search_sample_feature_4' class='step passed'><div><span class="keyword">Given</span> <span class="step val">passing without a table</span></div></li> <script type="text/javascript">moveProgressBar('55.6');</script></ol></div><div class='scenario'><h3 id="scenario_29"><span class="keyword">Scenario:</span> <span class="val">should match Hantu Pisang</span></h3><ol> <script type="text/javascript">moveProgressBar('56.2');</script><li id='features_search_sample_feature_7' class='step passed'><div><span class="keyword">Given</span> <span class="step val">passing without a table</span></div></li> <script type="text/javascript">moveProgressBar('56.8');</script></ol></div><div class='scenario'><h3 id="scenario_30"><span class="keyword">Scenario:</span> <span class="val">Ignore me</span></h3><ol> <script type="text/javascript">moveProgressBar('57.3');</script><script>makeRed('scenario_30');</script><li id='features_search_sample_feature_10' class='step failed'><div><span class="keyword">Given</span> <span class="step val">failing without a table</span></div><div class="message"><pre>FAIL</pre></div><div class="backtrace"><pre>./features/step_definitions/sample_steps.rb:2:in `flunker'
|
369
|
+
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
370
|
+
features/search_sample.feature:10:in `Given failing without a table':in `flunker'
|
371
|
+
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
372
|
+
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
373
|
+
features/search_sample.feature:10:in `Given failing without a table':in `/^failing without a table$/'
|
173
374
|
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
174
375
|
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
175
|
-
features/search_sample.feature:10:in `Given failing without a table'
|
376
|
+
features/search_sample.feature:10:in `Given failing without a table':in `Given failing without a table'</pre></div><pre class="ruby"><code><span class="linenum">0</span><span class="keyword">def </span><span class="method">flunker</span>
|
377
|
+
<span class="linenum">1</span> <span class="keyword">raise</span> <span class="punct">"</span><span class="string">FAIL</span><span class="punct">"</span>
|
378
|
+
<span class="offending"><span class="linenum">2</span><span class="keyword">end</span></span></code></pre></li> <script type="text/javascript">moveProgressBar('57.9');</script></ol></div><div class='scenario outline'><h3 id="scenario_31"><span class="keyword">Scenario Outline:</span> <span class="val">Ignore me</span></h3><ol><li id='features_search_sample_feature_13' class='step skipped'><div><span class="keyword">Given</span> <span class="step val"><state> without a table</span></div></li> <script type="text/javascript">moveProgressBar('58.5');</script></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr class='step' id='row_15'><th class="step skipped_param" id="row_15_0"><div><span class="step param">state</span></div></th></tr> <script type="text/javascript">moveProgressBar('59.1');</script><tr class='step' id='row_16'><td class="step failed" id="row_16_0"><div><span class="step param">failing</span></div></td><script>makeRed('scenario_31');</script></tr><tr><td class="failed" colspan="1"><pre>FAIL
|
176
379
|
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
177
380
|
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
178
|
-
features/search_sample.feature:13:in `Given
|
381
|
+
features/search_sample.feature:13:in `Given <state> without a table'</pre></td></tr> <script type="text/javascript">moveProgressBar('59.7');</script></table></div></div><div class='scenario outline'><h3 id="scenario_32"><span class="keyword">Scenario Outline:</span> <span class="val">Hantu Pisang match</span></h3><ol><li id='features_search_sample_feature_19' class='step skipped'><div><span class="keyword">Given</span> <span class="step val"><state> without a table</span></div></li> <script type="text/javascript">moveProgressBar('60.3');</script></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr class='step' id='row_21'><th class="step skipped_param" id="row_21_0"><div><span class="step param">state</span></div></th></tr> <script type="text/javascript">moveProgressBar('60.9');</script><tr class='step' id='row_22'><td class="step passed" id="row_22_0"><div><span class="step param">passing</span></div></td></tr> <script type="text/javascript">moveProgressBar('61.5');</script></table></div></div><div class='scenario outline'><h3 id="scenario_33"><span class="keyword">Scenario Outline:</span> <span class="val">no match in name but in examples</span></h3><ol><li id='features_search_sample_feature_25' class='step skipped'><div><span class="keyword">Given</span> <span class="step val"><state> without a table</span></div></li> <script type="text/javascript">moveProgressBar('62.1');</script></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val">Hantu Pisang</span></h4><table><tr class='step' id='row_27'><th class="step skipped_param" id="row_27_0"><div><span class="step param">state</span></div></th></tr> <script type="text/javascript">moveProgressBar('62.7');</script><tr class='step' id='row_28'><td class="step passed" id="row_28_0"><div><span class="step param">passing</span></div></td></tr> <script type="text/javascript">moveProgressBar('63.3');</script></table></div><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val">Ignore me</span></h4><table><tr class='step' id='row_31'><th class="step skipped_param" id="row_31_0"><div><span class="step param">state</span></div></th></tr> <script type="text/javascript">moveProgressBar('63.9');</script><tr class='step' id='row_32'><td class="step failed" id="row_32_0"><div><span class="step param">failing</span></div></td><script>makeRed('scenario_33');</script></tr><tr><td class="failed" colspan="1"><pre>FAIL
|
179
382
|
./features/step_definitions/sample_steps.rb:2:in `flunker'
|
180
383
|
./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
|
181
|
-
features/search_sample.feature:25:in `Given
|
384
|
+
features/search_sample.feature:25:in `Given <state> without a table'</pre></td></tr> <script type="text/javascript">moveProgressBar('64.4');</script></table></div></div></div><div class="feature"><span class="tag">@sample_one</span><h2><span class="val">Feature: Tag samples</span></h2><p class="narrative"></p><div class='scenario'><span class="tag">@sample_two</span> <span class="tag">@sample_four</span><h3 id="scenario_34"><span class="keyword">Scenario:</span> <span class="val">Passing</span></h3><ol><script>makeYellow('scenario_34');</script><li id='features_tags_sample_feature_6' class='step undefined'><div><span class="keyword">Given</span> <span class="step val">missing</span></div><pre>Given /^missing$/ do
|
385
|
+
pending # express the regexp above with the code you wish you had
|
386
|
+
end</pre></li> <script type="text/javascript">moveProgressBar('65.0');</script></ol></div><div class='scenario outline'><span class="tag">@sample_three</span><h3 id="scenario_35"><span class="keyword">Scenario Outline:</span> <span class="val"></span></h3><ol><li id='features_tags_sample_feature_10' class='step skipped'><div><span class="keyword">Given</span> <span class="step val"><state></span></div></li> <script type="text/javascript">moveProgressBar('65.6');</script></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr class='step' id='row_12'><th class="step skipped_param" id="row_12_0"><div><span class="step param">state</span></div></th></tr> <script type="text/javascript">moveProgressBar('66.2');</script><tr class='step' id='row_13'><td class="step undefined" id="row_13_0"><div><span class="step param">missing</span></div></td><script>makeYellow('scenario_35');</script></tr> <script type="text/javascript">moveProgressBar('66.8');</script></table></div></div><div class='scenario'><span class="tag">@sample_three</span> <span class="tag">@sample_four</span><h3 id="scenario_36"><span class="keyword">Scenario:</span> <span class="val">Skipped</span></h3><ol><script>makeYellow('scenario_36');</script><li id='features_tags_sample_feature_17' class='step undefined'><div><span class="keyword">Given</span> <span class="step val">missing</span></div><pre>Given /^missing$/ do
|
387
|
+
pending # express the regexp above with the code you wish you had
|
388
|
+
end</pre></li> <script type="text/javascript">moveProgressBar('67.4');</script></ol></div></div><div class="feature"><span class="tag">@lots</span><h2><span class="val">Feature: Tons of cukes</span></h2><p class="narrative"></p><div class='scenario'><h3 id="scenario_37"><span class="keyword">Scenario:</span> <span class="val">Lots and lots</span></h3><ol><li id='features_tons_of_cukes_feature_4' class='step passed'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('68.0');</script><script>makeRed('scenario_37');</script><li id='features_tons_of_cukes_feature_5' class='step failed'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div><div class="message"><pre>We already have 2 cukes!</pre></div><div class="backtrace"><pre>./features/step_definitions/sample_steps.rb:28:in `/^'(.+)' cukes$/'
|
389
|
+
features/tons_of_cukes.feature:5:in `Given '2' cukes':in `/^'(.+)' cukes$/'
|
182
390
|
./features/step_definitions/sample_steps.rb:28:in `/^'(.+)' cukes$/'
|
183
|
-
features/tons_of_cukes.feature:5:in `Given '2' cukes'
|
391
|
+
features/tons_of_cukes.feature:5:in `Given '2' cukes':in `Given '2' cukes'</pre></div><pre class="ruby"><code><span class="linenum">26</span>
|
392
|
+
<span class="linenum">27</span><span class="constant">Given</span> <span class="punct">/^'</span><span class="string">(.+)</span><span class="punct">'</span> <span class="ident">cukes</span><span class="global">$/</span> <span class="keyword">do</span> <span class="punct">|</span><span class="ident">cukes</span><span class="punct">|</span>
|
393
|
+
<span class="offending"><span class="linenum">28</span> <span class="keyword">raise</span> <span class="punct">"</span><span class="string">We already have <span class="expr">#{@cukes}</span> cukes!</span><span class="punct">"</span> <span class="keyword">if</span> <span class="attribute">@cukes</span></span>
|
394
|
+
<span class="linenum">29</span> <span class="attribute">@cukes</span> <span class="punct">=</span> <span class="ident">cukes</span>
|
395
|
+
<span class="linenum">30</span><span class="keyword">end</span></code></pre></li> <script type="text/javascript">moveProgressBar('68.6');</script><li id='features_tons_of_cukes_feature_6' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('69.2');</script><li id='features_tons_of_cukes_feature_7' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('69.8');</script><li id='features_tons_of_cukes_feature_8' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('70.4');</script><li id='features_tons_of_cukes_feature_9' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('71.0');</script><li id='features_tons_of_cukes_feature_10' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('71.5');</script><li id='features_tons_of_cukes_feature_11' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('72.1');</script><li id='features_tons_of_cukes_feature_12' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('72.7');</script><li id='features_tons_of_cukes_feature_13' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('73.3');</script><li id='features_tons_of_cukes_feature_14' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('73.9');</script><li id='features_tons_of_cukes_feature_15' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('74.5');</script><li id='features_tons_of_cukes_feature_16' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('75.1');</script><li id='features_tons_of_cukes_feature_17' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('75.7');</script><li id='features_tons_of_cukes_feature_18' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('76.3');</script><li id='features_tons_of_cukes_feature_19' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('76.9');</script><li id='features_tons_of_cukes_feature_20' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('77.5');</script><li id='features_tons_of_cukes_feature_21' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('78.1');</script><li id='features_tons_of_cukes_feature_22' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('78.6');</script><li id='features_tons_of_cukes_feature_23' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('79.2');</script><li id='features_tons_of_cukes_feature_24' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('79.8');</script><li id='features_tons_of_cukes_feature_25' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('80.4');</script><li id='features_tons_of_cukes_feature_26' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('81.0');</script><li id='features_tons_of_cukes_feature_27' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('81.6');</script><li id='features_tons_of_cukes_feature_28' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('82.2');</script><li id='features_tons_of_cukes_feature_29' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('82.8');</script><li id='features_tons_of_cukes_feature_30' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('83.4');</script><li id='features_tons_of_cukes_feature_31' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('84.0');</script><li id='features_tons_of_cukes_feature_32' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('84.6');</script><li id='features_tons_of_cukes_feature_33' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('85.2');</script><li id='features_tons_of_cukes_feature_34' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('85.7');</script><li id='features_tons_of_cukes_feature_35' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('86.3');</script><li id='features_tons_of_cukes_feature_36' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('86.9');</script><li id='features_tons_of_cukes_feature_37' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('87.5');</script><li id='features_tons_of_cukes_feature_38' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('88.1');</script><li id='features_tons_of_cukes_feature_39' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('88.7');</script><li id='features_tons_of_cukes_feature_40' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('89.3');</script><li id='features_tons_of_cukes_feature_41' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('89.9');</script><li id='features_tons_of_cukes_feature_42' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('90.5');</script><li id='features_tons_of_cukes_feature_43' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('91.1');</script><li id='features_tons_of_cukes_feature_44' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('91.7');</script><li id='features_tons_of_cukes_feature_45' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('92.3');</script><li id='features_tons_of_cukes_feature_46' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('92.8');</script><li id='features_tons_of_cukes_feature_47' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('93.4');</script><li id='features_tons_of_cukes_feature_48' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('94.0');</script><li id='features_tons_of_cukes_feature_49' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('94.6');</script><li id='features_tons_of_cukes_feature_50' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('95.2');</script><li id='features_tons_of_cukes_feature_51' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('95.8');</script><li id='features_tons_of_cukes_feature_52' class='step skipped'><div><span class="keyword">Given</span> <span class="step val">'<span class="param">2</span>' cukes</span></div></li> <script type="text/javascript">moveProgressBar('96.4');</script></ol></div></div><div class="feature"><h2><span class="val">Feature: undefined multiline args</span></h2><p class="narrative"></p><div class='scenario'><h3 id="scenario_38"><span class="keyword">Scenario:</span> <span class="val">pystring</span></h3><ol><script>makeYellow('scenario_38');</script><li id='features_undefined_multiline_args_feature_4' class='step undefined'><div><span class="keyword">Given</span> <span class="step val">a pystring</span></div><pre class="val"> example</pre><pre>Given /^a pystring$/ do |string|
|
396
|
+
pending # express the regexp above with the code you wish you had
|
397
|
+
end</pre></li> <script type="text/javascript">moveProgressBar('97.0');</script></ol></div><div class='scenario'><h3 id="scenario_39"><span class="keyword">Scenario:</span> <span class="val">table</span></h3><ol><script>makeYellow('scenario_39');</script><li id='features_undefined_multiline_args_feature_10' class='step undefined'><div><span class="keyword">Given</span> <span class="step val">a table</span></div><table><tr class='step' id='row_11'><td class="step" id="row_11_0"><div><span class="step param">table</span></div></td></tr> <script type="text/javascript">moveProgressBar('98.2');</script><tr class='step' id='row_12'><td class="step" id="row_12_0"><div><span class="step param">example</span></div></td></tr> <script type="text/javascript">moveProgressBar('98.8');</script></table><pre>Given /^a table$/ do |table|
|
398
|
+
# table is a Cucumber::Ast::Table
|
399
|
+
pending # express the regexp above with the code you wish you had
|
400
|
+
end</pre></li> <script type="text/javascript">moveProgressBar('98.8');</script></ol></div></div><script type="text/javascript">document.getElementById('duration').innerHTML = "Finished in <strong>0m30.005s seconds</strong>";</script><script type="text/javascript">document.getElementById('totals').innerHTML = "43 scenarios (10 failed, 2 skipped, 12 undefined, 19 passed)<br />131 steps (10 failed, 60 skipped, 16 undefined, 45 passed)";</script></div></body></html>
|