cucumber 2.0.0.beta.3 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +3 -3
- data/History.md +131 -32
- data/Rakefile +0 -2
- data/cucumber.gemspec +4 -3
- data/examples/i18n/ht/Rakefile +6 -0
- data/examples/i18n/ht/features/adisyon.feature +17 -0
- data/examples/i18n/ht/features/divizyon.feature +10 -0
- data/examples/i18n/ht/features/step_definitions/kalkilatris_steps.rb +25 -0
- data/examples/i18n/ht/lib/kalkilatris.rb +14 -0
- data/examples/tcl/features/step_definitions/fib_steps.rb +1 -1
- data/features/docs/cli/dry_run.feature +48 -0
- data/features/docs/cli/exclude_files.feature +1 -2
- data/features/docs/cli/run_specific_scenarios.feature +28 -66
- data/features/docs/cli/strict_mode.feature +24 -1
- data/features/docs/defining_steps/nested_steps.feature +49 -0
- data/features/docs/defining_steps/skip_scenario.feature +31 -2
- data/features/docs/defining_steps/snippets.feature +15 -0
- data/features/docs/exception_in_after_step_hook.feature +1 -1
- data/features/docs/exception_in_around_hook.feature +80 -0
- data/features/docs/extending_cucumber/custom_filter.feature +29 -0
- data/features/docs/extending_cucumber/custom_formatter.feature +65 -7
- data/features/docs/formatters/debug_formatter.feature +24 -17
- data/features/docs/formatters/json_formatter.feature +65 -1
- data/features/docs/formatters/junit_formatter.feature +40 -0
- data/features/docs/formatters/pretty_formatter.feature +42 -0
- data/features/docs/formatters/rerun_formatter.feature +3 -2
- data/features/docs/getting_started.feature +1 -1
- data/features/docs/{wire_protocol_erb.feature → wire_protocol/erb_configuration.feature} +2 -2
- data/features/docs/wire_protocol/handle_unexpected_response.feature +30 -0
- data/features/docs/wire_protocol/invoke_message.feature +216 -0
- data/features/docs/wire_protocol/readme.md +26 -0
- data/features/docs/wire_protocol/snippets_message.feature +51 -0
- data/features/docs/wire_protocol/step_matches_message.feature +81 -0
- data/features/docs/{wire_protocol_table_diffing.feature → wire_protocol/table_diffing.feature} +1 -0
- data/features/docs/{wire_protocol_tags.feature → wire_protocol/tags.feature} +1 -0
- data/features/docs/{wire_protocol_timeouts.feature → wire_protocol/timeouts.feature} +1 -0
- data/features/docs/work_in_progress.feature +1 -1
- data/features/docs/writing_support_code/after_hooks.feature +24 -0
- data/features/docs/writing_support_code/around_hooks.feature +31 -0
- data/features/docs/writing_support_code/before_hook.feature +7 -3
- data/features/docs/writing_support_code/tagged_hooks.feature +44 -6
- data/features/lib/step_definitions/wire_steps.rb +18 -1
- data/features/lib/support/fake_wire_server.rb +10 -7
- data/lib/cucumber/cli/configuration.rb +6 -11
- data/lib/cucumber/cli/main.rb +2 -2
- data/lib/cucumber/cli/options.rb +8 -1
- data/lib/cucumber/cli/profile_loader.rb +1 -1
- data/lib/cucumber/core_ext/instance_exec.rb +1 -1
- data/lib/cucumber/encoding.rb +5 -0
- data/lib/cucumber/errors.rb +8 -0
- data/lib/cucumber/file_specs.rb +3 -1
- data/lib/cucumber/filters/activate_steps.rb +33 -0
- data/lib/cucumber/filters/apply_after_hooks.rb +9 -0
- data/lib/cucumber/filters/apply_after_step_hooks.rb +12 -0
- data/lib/cucumber/filters/apply_around_hooks.rb +12 -0
- data/lib/cucumber/filters/apply_before_hooks.rb +9 -0
- data/lib/cucumber/{runtime → filters}/gated_receiver.rb +5 -1
- data/lib/cucumber/filters/prepare_world.rb +45 -0
- data/lib/cucumber/filters/quit.rb +28 -0
- data/lib/cucumber/filters/randomizer.rb +40 -0
- data/lib/cucumber/{runtime → filters}/tag_limits/test_case_index.rb +4 -2
- data/lib/cucumber/{runtime → filters}/tag_limits/verifier.rb +4 -2
- data/lib/cucumber/filters/tag_limits.rb +45 -0
- data/lib/cucumber/filters.rb +9 -0
- data/lib/cucumber/formatter/ansicolor.rb +0 -8
- data/lib/cucumber/formatter/console.rb +37 -20
- data/lib/cucumber/formatter/debug.rb +1 -8
- data/lib/cucumber/formatter/fanout.rb +27 -0
- data/lib/cucumber/formatter/gherkin_formatter_adapter.rb +10 -9
- data/lib/cucumber/formatter/html.rb +31 -6
- data/lib/cucumber/formatter/ignore_missing_messages.rb +20 -0
- data/lib/cucumber/formatter/junit.rb +97 -2
- data/lib/cucumber/formatter/legacy_api/adapter.rb +1060 -0
- data/lib/cucumber/formatter/legacy_api/ast.rb +376 -0
- data/lib/cucumber/formatter/legacy_api/results.rb +51 -0
- data/lib/cucumber/formatter/legacy_api/runtime_facade.rb +30 -0
- data/lib/cucumber/formatter/pretty.rb +14 -0
- data/lib/cucumber/formatter/progress.rb +10 -0
- data/lib/cucumber/formatter/rerun.rb +14 -88
- data/lib/cucumber/hooks.rb +97 -0
- data/lib/cucumber/language_support/language_methods.rb +0 -54
- data/lib/cucumber/multiline_argument/data_table.rb +41 -29
- data/lib/cucumber/platform.rb +3 -3
- data/lib/cucumber/project_initializer.rb +43 -0
- data/lib/cucumber/rb_support/rb_hook.rb +2 -2
- data/lib/cucumber/rb_support/rb_step_definition.rb +11 -2
- data/lib/cucumber/rb_support/rb_transform.rb +3 -1
- data/lib/cucumber/rb_support/rb_world.rb +2 -2
- data/lib/cucumber/rb_support/snippet.rb +1 -1
- data/lib/cucumber/rspec/doubles.rb +1 -1
- data/lib/cucumber/running_test_case.rb +115 -0
- data/lib/cucumber/runtime/after_hooks.rb +24 -0
- data/lib/cucumber/runtime/before_hooks.rb +23 -0
- data/lib/cucumber/runtime/for_programming_languages.rb +4 -8
- data/lib/cucumber/runtime/step_hooks.rb +22 -0
- data/lib/cucumber/runtime/support_code.rb +70 -5
- data/lib/cucumber/runtime.rb +56 -112
- data/lib/cucumber/step_match.rb +26 -2
- data/lib/cucumber.rb +7 -3
- data/spec/cucumber/cli/configuration_spec.rb +16 -1
- data/spec/cucumber/cli/profile_loader_spec.rb +10 -0
- data/spec/cucumber/core_ext/instance_exec_spec.rb +4 -0
- data/spec/cucumber/file_specs_spec.rb +21 -2
- data/spec/cucumber/filters/activate_steps_spec.rb +57 -0
- data/spec/cucumber/{runtime → filters}/gated_receiver_spec.rb +3 -3
- data/spec/cucumber/{runtime → filters}/tag_limits/test_case_index_spec.rb +3 -3
- data/spec/cucumber/{runtime → filters}/tag_limits/verifier_spec.rb +4 -4
- data/spec/cucumber/{runtime/tag_limits/filter_spec.rb → filters/tag_limits_spec.rb} +6 -6
- data/spec/cucumber/formatter/debug_spec.rb +25 -530
- data/spec/cucumber/formatter/html_spec.rb +140 -0
- data/spec/cucumber/formatter/junit_spec.rb +212 -156
- data/spec/cucumber/formatter/legacy_api/adapter_spec.rb +2090 -0
- data/spec/cucumber/formatter/pretty_spec.rb +248 -2
- data/spec/cucumber/formatter/rerun_spec.rb +107 -0
- data/spec/cucumber/formatter/spec_helper.rb +17 -8
- data/spec/cucumber/hooks_spec.rb +30 -0
- data/spec/cucumber/multiline_argument/data_table_spec.rb +53 -47
- data/spec/cucumber/project_initializer_spec.rb +87 -0
- data/spec/cucumber/rb_support/rb_language_spec.rb +2 -2
- data/spec/cucumber/rb_support/rb_step_definition_spec.rb +32 -7
- data/spec/cucumber/rb_support/rb_transform_spec.rb +20 -0
- data/spec/cucumber/rb_support/snippet_spec.rb +6 -6
- data/spec/cucumber/running_test_case_spec.rb +83 -0
- data/spec/cucumber/runtime_spec.rb +1 -5
- data/spec/spec_helper.rb +3 -4
- metadata +149 -107
- data/bin/cuke +0 -60
- data/features/docs/extending_cucumber/formatter_callbacks.feature +0 -370
- data/features/docs/output_from_hooks.feature +0 -128
- data/features/docs/report_called_undefined_steps.feature +0 -57
- data/features/docs/wire_protocol.feature +0 -337
- data/gem_tasks/yard/default/layout/html/bubble_32x32.png +0 -0
- data/gem_tasks/yard/default/layout/html/footer.erb +0 -5
- data/gem_tasks/yard/default/layout/html/index.erb +0 -1
- data/gem_tasks/yard/default/layout/html/layout.erb +0 -25
- data/gem_tasks/yard/default/layout/html/logo.erb +0 -1
- data/gem_tasks/yard/default/layout/html/setup.rb +0 -4
- data/gem_tasks/yard.rake +0 -43
- data/lib/cucumber/mappings.rb +0 -238
- data/lib/cucumber/reports/legacy_formatter.rb +0 -1349
- data/lib/cucumber/runtime/results.rb +0 -64
- data/lib/cucumber/runtime/tag_limits/filter.rb +0 -31
- data/lib/cucumber/runtime/tag_limits.rb +0 -15
- data/spec/cucumber/mappings_spec.rb +0 -180
- data/spec/cucumber/reports/legacy_formatter_spec.rb +0 -1860
- data/spec/cucumber/runtime/results_spec.rb +0 -88
metadata
CHANGED
|
@@ -1,314 +1,327 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cucumber
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.0
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aslak Hellesøy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-03-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cucumber-core
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - ~>
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.
|
|
19
|
+
version: 1.1.3
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - ~>
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 1.
|
|
26
|
+
version: 1.1.3
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: builder
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- -
|
|
31
|
+
- - '>='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: 2.1.2
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- -
|
|
38
|
+
- - '>='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: 2.1.2
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: diff-lcs
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- -
|
|
45
|
+
- - '>='
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
47
|
version: 1.1.3
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- -
|
|
52
|
+
- - '>='
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: 1.1.3
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: gherkin
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
|
-
- -
|
|
59
|
+
- - ~>
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
61
|
version: '2.12'
|
|
62
62
|
type: :runtime
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
|
-
- -
|
|
66
|
+
- - ~>
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '2.12'
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: multi_json
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
|
-
- -
|
|
73
|
+
- - '>='
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
75
|
version: 1.7.5
|
|
76
|
-
- -
|
|
76
|
+
- - <
|
|
77
77
|
- !ruby/object:Gem::Version
|
|
78
78
|
version: '2.0'
|
|
79
79
|
type: :runtime
|
|
80
80
|
prerelease: false
|
|
81
81
|
version_requirements: !ruby/object:Gem::Requirement
|
|
82
82
|
requirements:
|
|
83
|
-
- -
|
|
83
|
+
- - '>='
|
|
84
84
|
- !ruby/object:Gem::Version
|
|
85
85
|
version: 1.7.5
|
|
86
|
-
- -
|
|
86
|
+
- - <
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
88
|
version: '2.0'
|
|
89
89
|
- !ruby/object:Gem::Dependency
|
|
90
90
|
name: multi_test
|
|
91
91
|
requirement: !ruby/object:Gem::Requirement
|
|
92
92
|
requirements:
|
|
93
|
-
- -
|
|
93
|
+
- - '>='
|
|
94
94
|
- !ruby/object:Gem::Version
|
|
95
|
-
version: 0.1.
|
|
95
|
+
version: 0.1.2
|
|
96
96
|
type: :runtime
|
|
97
97
|
prerelease: false
|
|
98
98
|
version_requirements: !ruby/object:Gem::Requirement
|
|
99
99
|
requirements:
|
|
100
|
-
- -
|
|
100
|
+
- - '>='
|
|
101
101
|
- !ruby/object:Gem::Version
|
|
102
|
-
version: 0.1.
|
|
102
|
+
version: 0.1.2
|
|
103
103
|
- !ruby/object:Gem::Dependency
|
|
104
104
|
name: aruba
|
|
105
105
|
requirement: !ruby/object:Gem::Requirement
|
|
106
106
|
requirements:
|
|
107
|
-
- -
|
|
107
|
+
- - ~>
|
|
108
108
|
- !ruby/object:Gem::Version
|
|
109
|
-
version: 0.
|
|
109
|
+
version: 0.6.1
|
|
110
110
|
type: :development
|
|
111
111
|
prerelease: false
|
|
112
112
|
version_requirements: !ruby/object:Gem::Requirement
|
|
113
113
|
requirements:
|
|
114
|
-
- -
|
|
114
|
+
- - ~>
|
|
115
115
|
- !ruby/object:Gem::Version
|
|
116
|
-
version: 0.
|
|
116
|
+
version: 0.6.1
|
|
117
117
|
- !ruby/object:Gem::Dependency
|
|
118
118
|
name: json
|
|
119
119
|
requirement: !ruby/object:Gem::Requirement
|
|
120
120
|
requirements:
|
|
121
|
-
- -
|
|
121
|
+
- - ~>
|
|
122
122
|
- !ruby/object:Gem::Version
|
|
123
123
|
version: '1.7'
|
|
124
124
|
type: :development
|
|
125
125
|
prerelease: false
|
|
126
126
|
version_requirements: !ruby/object:Gem::Requirement
|
|
127
127
|
requirements:
|
|
128
|
-
- -
|
|
128
|
+
- - ~>
|
|
129
129
|
- !ruby/object:Gem::Version
|
|
130
130
|
version: '1.7'
|
|
131
131
|
- !ruby/object:Gem::Dependency
|
|
132
132
|
name: nokogiri
|
|
133
133
|
requirement: !ruby/object:Gem::Requirement
|
|
134
134
|
requirements:
|
|
135
|
-
- -
|
|
135
|
+
- - ~>
|
|
136
136
|
- !ruby/object:Gem::Version
|
|
137
137
|
version: '1.5'
|
|
138
138
|
type: :development
|
|
139
139
|
prerelease: false
|
|
140
140
|
version_requirements: !ruby/object:Gem::Requirement
|
|
141
141
|
requirements:
|
|
142
|
-
- -
|
|
142
|
+
- - ~>
|
|
143
143
|
- !ruby/object:Gem::Version
|
|
144
144
|
version: '1.5'
|
|
145
145
|
- !ruby/object:Gem::Dependency
|
|
146
146
|
name: rake
|
|
147
147
|
requirement: !ruby/object:Gem::Requirement
|
|
148
148
|
requirements:
|
|
149
|
-
- -
|
|
149
|
+
- - '>='
|
|
150
150
|
- !ruby/object:Gem::Version
|
|
151
151
|
version: 0.9.2
|
|
152
152
|
type: :development
|
|
153
153
|
prerelease: false
|
|
154
154
|
version_requirements: !ruby/object:Gem::Requirement
|
|
155
155
|
requirements:
|
|
156
|
-
- -
|
|
156
|
+
- - '>='
|
|
157
157
|
- !ruby/object:Gem::Version
|
|
158
158
|
version: 0.9.2
|
|
159
159
|
- !ruby/object:Gem::Dependency
|
|
160
160
|
name: rspec
|
|
161
161
|
requirement: !ruby/object:Gem::Requirement
|
|
162
162
|
requirements:
|
|
163
|
-
- -
|
|
163
|
+
- - '>='
|
|
164
164
|
- !ruby/object:Gem::Version
|
|
165
165
|
version: '3.0'
|
|
166
166
|
type: :development
|
|
167
167
|
prerelease: false
|
|
168
168
|
version_requirements: !ruby/object:Gem::Requirement
|
|
169
169
|
requirements:
|
|
170
|
-
- -
|
|
170
|
+
- - '>='
|
|
171
171
|
- !ruby/object:Gem::Version
|
|
172
172
|
version: '3.0'
|
|
173
173
|
- !ruby/object:Gem::Dependency
|
|
174
174
|
name: simplecov
|
|
175
175
|
requirement: !ruby/object:Gem::Requirement
|
|
176
176
|
requirements:
|
|
177
|
-
- -
|
|
177
|
+
- - '>='
|
|
178
178
|
- !ruby/object:Gem::Version
|
|
179
179
|
version: 0.6.2
|
|
180
180
|
type: :development
|
|
181
181
|
prerelease: false
|
|
182
182
|
version_requirements: !ruby/object:Gem::Requirement
|
|
183
183
|
requirements:
|
|
184
|
-
- -
|
|
184
|
+
- - '>='
|
|
185
185
|
- !ruby/object:Gem::Version
|
|
186
186
|
version: 0.6.2
|
|
187
187
|
- !ruby/object:Gem::Dependency
|
|
188
188
|
name: coveralls
|
|
189
189
|
requirement: !ruby/object:Gem::Requirement
|
|
190
190
|
requirements:
|
|
191
|
-
- -
|
|
191
|
+
- - ~>
|
|
192
192
|
- !ruby/object:Gem::Version
|
|
193
193
|
version: '0.7'
|
|
194
194
|
type: :development
|
|
195
195
|
prerelease: false
|
|
196
196
|
version_requirements: !ruby/object:Gem::Requirement
|
|
197
197
|
requirements:
|
|
198
|
-
- -
|
|
198
|
+
- - ~>
|
|
199
199
|
- !ruby/object:Gem::Version
|
|
200
200
|
version: '0.7'
|
|
201
201
|
- !ruby/object:Gem::Dependency
|
|
202
202
|
name: syntax
|
|
203
203
|
requirement: !ruby/object:Gem::Requirement
|
|
204
204
|
requirements:
|
|
205
|
-
- -
|
|
205
|
+
- - '>='
|
|
206
206
|
- !ruby/object:Gem::Version
|
|
207
207
|
version: 1.0.0
|
|
208
208
|
type: :development
|
|
209
209
|
prerelease: false
|
|
210
210
|
version_requirements: !ruby/object:Gem::Requirement
|
|
211
211
|
requirements:
|
|
212
|
-
- -
|
|
212
|
+
- - '>='
|
|
213
213
|
- !ruby/object:Gem::Version
|
|
214
214
|
version: 1.0.0
|
|
215
|
+
- !ruby/object:Gem::Dependency
|
|
216
|
+
name: pry
|
|
217
|
+
requirement: !ruby/object:Gem::Requirement
|
|
218
|
+
requirements:
|
|
219
|
+
- - '>='
|
|
220
|
+
- !ruby/object:Gem::Version
|
|
221
|
+
version: '0'
|
|
222
|
+
type: :development
|
|
223
|
+
prerelease: false
|
|
224
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
225
|
+
requirements:
|
|
226
|
+
- - '>='
|
|
227
|
+
- !ruby/object:Gem::Version
|
|
228
|
+
version: '0'
|
|
215
229
|
- !ruby/object:Gem::Dependency
|
|
216
230
|
name: bcat
|
|
217
231
|
requirement: !ruby/object:Gem::Requirement
|
|
218
232
|
requirements:
|
|
219
|
-
- -
|
|
233
|
+
- - ~>
|
|
220
234
|
- !ruby/object:Gem::Version
|
|
221
235
|
version: 0.6.2
|
|
222
236
|
type: :development
|
|
223
237
|
prerelease: false
|
|
224
238
|
version_requirements: !ruby/object:Gem::Requirement
|
|
225
239
|
requirements:
|
|
226
|
-
- -
|
|
240
|
+
- - ~>
|
|
227
241
|
- !ruby/object:Gem::Version
|
|
228
242
|
version: 0.6.2
|
|
229
243
|
- !ruby/object:Gem::Dependency
|
|
230
244
|
name: kramdown
|
|
231
245
|
requirement: !ruby/object:Gem::Requirement
|
|
232
246
|
requirements:
|
|
233
|
-
- -
|
|
247
|
+
- - ~>
|
|
234
248
|
- !ruby/object:Gem::Version
|
|
235
249
|
version: '0.14'
|
|
236
250
|
type: :development
|
|
237
251
|
prerelease: false
|
|
238
252
|
version_requirements: !ruby/object:Gem::Requirement
|
|
239
253
|
requirements:
|
|
240
|
-
- -
|
|
254
|
+
- - ~>
|
|
241
255
|
- !ruby/object:Gem::Version
|
|
242
256
|
version: '0.14'
|
|
243
257
|
- !ruby/object:Gem::Dependency
|
|
244
258
|
name: yard
|
|
245
259
|
requirement: !ruby/object:Gem::Requirement
|
|
246
260
|
requirements:
|
|
247
|
-
- -
|
|
261
|
+
- - ~>
|
|
248
262
|
- !ruby/object:Gem::Version
|
|
249
263
|
version: 0.8.0
|
|
250
264
|
type: :development
|
|
251
265
|
prerelease: false
|
|
252
266
|
version_requirements: !ruby/object:Gem::Requirement
|
|
253
267
|
requirements:
|
|
254
|
-
- -
|
|
268
|
+
- - ~>
|
|
255
269
|
- !ruby/object:Gem::Version
|
|
256
270
|
version: 0.8.0
|
|
257
271
|
- !ruby/object:Gem::Dependency
|
|
258
272
|
name: capybara
|
|
259
273
|
requirement: !ruby/object:Gem::Requirement
|
|
260
274
|
requirements:
|
|
261
|
-
- -
|
|
275
|
+
- - '>='
|
|
262
276
|
- !ruby/object:Gem::Version
|
|
263
277
|
version: '2.1'
|
|
264
278
|
type: :development
|
|
265
279
|
prerelease: false
|
|
266
280
|
version_requirements: !ruby/object:Gem::Requirement
|
|
267
281
|
requirements:
|
|
268
|
-
- -
|
|
282
|
+
- - '>='
|
|
269
283
|
- !ruby/object:Gem::Version
|
|
270
284
|
version: '2.1'
|
|
271
285
|
- !ruby/object:Gem::Dependency
|
|
272
286
|
name: rack-test
|
|
273
287
|
requirement: !ruby/object:Gem::Requirement
|
|
274
288
|
requirements:
|
|
275
|
-
- -
|
|
289
|
+
- - '>='
|
|
276
290
|
- !ruby/object:Gem::Version
|
|
277
291
|
version: 0.6.1
|
|
278
292
|
type: :development
|
|
279
293
|
prerelease: false
|
|
280
294
|
version_requirements: !ruby/object:Gem::Requirement
|
|
281
295
|
requirements:
|
|
282
|
-
- -
|
|
296
|
+
- - '>='
|
|
283
297
|
- !ruby/object:Gem::Version
|
|
284
298
|
version: 0.6.1
|
|
285
299
|
- !ruby/object:Gem::Dependency
|
|
286
300
|
name: sinatra
|
|
287
301
|
requirement: !ruby/object:Gem::Requirement
|
|
288
302
|
requirements:
|
|
289
|
-
- -
|
|
303
|
+
- - '>='
|
|
290
304
|
- !ruby/object:Gem::Version
|
|
291
305
|
version: 1.3.2
|
|
292
306
|
type: :development
|
|
293
307
|
prerelease: false
|
|
294
308
|
version_requirements: !ruby/object:Gem::Requirement
|
|
295
309
|
requirements:
|
|
296
|
-
- -
|
|
310
|
+
- - '>='
|
|
297
311
|
- !ruby/object:Gem::Version
|
|
298
312
|
version: 1.3.2
|
|
299
313
|
description: Behaviour Driven Development with elegance and joy
|
|
300
314
|
email: cukes@googlegroups.com
|
|
301
315
|
executables:
|
|
302
316
|
- cucumber
|
|
303
|
-
- cuke
|
|
304
317
|
extensions: []
|
|
305
318
|
extra_rdoc_files: []
|
|
306
319
|
files:
|
|
307
|
-
-
|
|
308
|
-
-
|
|
309
|
-
-
|
|
310
|
-
-
|
|
311
|
-
-
|
|
320
|
+
- .coveralls.yml
|
|
321
|
+
- .rspec
|
|
322
|
+
- .ruby-gemset
|
|
323
|
+
- .travis.yml
|
|
324
|
+
- .yardopts
|
|
312
325
|
- CONTRIBUTING.md
|
|
313
326
|
- Gemfile
|
|
314
327
|
- History.md
|
|
@@ -316,7 +329,6 @@ files:
|
|
|
316
329
|
- README.md
|
|
317
330
|
- Rakefile
|
|
318
331
|
- bin/cucumber
|
|
319
|
-
- bin/cuke
|
|
320
332
|
- cucumber.gemspec
|
|
321
333
|
- cucumber.yml
|
|
322
334
|
- examples/i18n/README.textile
|
|
@@ -402,6 +414,11 @@ files:
|
|
|
402
414
|
- examples/i18n/hi/features/division.feature
|
|
403
415
|
- examples/i18n/hi/features/step_definitions/calculator_steps.rb
|
|
404
416
|
- examples/i18n/hi/lib/calculator.rb
|
|
417
|
+
- examples/i18n/ht/Rakefile
|
|
418
|
+
- examples/i18n/ht/features/adisyon.feature
|
|
419
|
+
- examples/i18n/ht/features/divizyon.feature
|
|
420
|
+
- examples/i18n/ht/features/step_definitions/kalkilatris_steps.rb
|
|
421
|
+
- examples/i18n/ht/lib/kalkilatris.rb
|
|
405
422
|
- examples/i18n/hu/Rakefile
|
|
406
423
|
- examples/i18n/hu/features/osszeadas.feature
|
|
407
424
|
- examples/i18n/hu/features/osztas.feature
|
|
@@ -566,9 +583,10 @@ files:
|
|
|
566
583
|
- features/docs/defining_steps/transforms.feature
|
|
567
584
|
- features/docs/exception_in_after_hook.feature
|
|
568
585
|
- features/docs/exception_in_after_step_hook.feature
|
|
586
|
+
- features/docs/exception_in_around_hook.feature
|
|
569
587
|
- features/docs/exception_in_before_hook.feature
|
|
588
|
+
- features/docs/extending_cucumber/custom_filter.feature
|
|
570
589
|
- features/docs/extending_cucumber/custom_formatter.feature
|
|
571
|
-
- features/docs/extending_cucumber/formatter_callbacks.feature
|
|
572
590
|
- features/docs/formatters/debug_formatter.feature
|
|
573
591
|
- features/docs/formatters/formatter_step_file_colon_line.feature
|
|
574
592
|
- features/docs/formatters/html_formatter.feature
|
|
@@ -589,17 +607,19 @@ files:
|
|
|
589
607
|
- features/docs/gherkin/using_descriptions.feature
|
|
590
608
|
- features/docs/gherkin/using_star_notation.feature
|
|
591
609
|
- features/docs/iso-8859-1.feature
|
|
592
|
-
- features/docs/output_from_hooks.feature
|
|
593
610
|
- features/docs/post_configuration_hook.feature
|
|
594
611
|
- features/docs/profiles.feature
|
|
595
612
|
- features/docs/rake_task.feature
|
|
596
613
|
- features/docs/raketask.feature
|
|
597
|
-
- features/docs/
|
|
598
|
-
- features/docs/wire_protocol.feature
|
|
599
|
-
- features/docs/
|
|
600
|
-
- features/docs/
|
|
601
|
-
- features/docs/
|
|
602
|
-
- features/docs/
|
|
614
|
+
- features/docs/wire_protocol/erb_configuration.feature
|
|
615
|
+
- features/docs/wire_protocol/handle_unexpected_response.feature
|
|
616
|
+
- features/docs/wire_protocol/invoke_message.feature
|
|
617
|
+
- features/docs/wire_protocol/readme.md
|
|
618
|
+
- features/docs/wire_protocol/snippets_message.feature
|
|
619
|
+
- features/docs/wire_protocol/step_matches_message.feature
|
|
620
|
+
- features/docs/wire_protocol/table_diffing.feature
|
|
621
|
+
- features/docs/wire_protocol/tags.feature
|
|
622
|
+
- features/docs/wire_protocol/timeouts.feature
|
|
603
623
|
- features/docs/work_in_progress.feature
|
|
604
624
|
- features/docs/writing_support_code/after_hooks.feature
|
|
605
625
|
- features/docs/writing_support_code/around_hooks.feature
|
|
@@ -633,13 +653,6 @@ files:
|
|
|
633
653
|
- gem_tasks/sass.rake
|
|
634
654
|
- gem_tasks/stats
|
|
635
655
|
- gem_tasks/versions.txt
|
|
636
|
-
- gem_tasks/yard.rake
|
|
637
|
-
- gem_tasks/yard/default/layout/html/bubble_32x32.png
|
|
638
|
-
- gem_tasks/yard/default/layout/html/footer.erb
|
|
639
|
-
- gem_tasks/yard/default/layout/html/index.erb
|
|
640
|
-
- gem_tasks/yard/default/layout/html/layout.erb
|
|
641
|
-
- gem_tasks/yard/default/layout/html/logo.erb
|
|
642
|
-
- gem_tasks/yard/default/layout/html/setup.rb
|
|
643
656
|
- lib/autotest/cucumber.rb
|
|
644
657
|
- lib/autotest/cucumber_mixin.rb
|
|
645
658
|
- lib/autotest/cucumber_rails.rb
|
|
@@ -659,23 +672,43 @@ files:
|
|
|
659
672
|
- lib/cucumber/core_ext/instance_exec.rb
|
|
660
673
|
- lib/cucumber/core_ext/proc.rb
|
|
661
674
|
- lib/cucumber/core_ext/string.rb
|
|
675
|
+
- lib/cucumber/encoding.rb
|
|
662
676
|
- lib/cucumber/errors.rb
|
|
663
677
|
- lib/cucumber/file_specs.rb
|
|
678
|
+
- lib/cucumber/filters.rb
|
|
679
|
+
- lib/cucumber/filters/activate_steps.rb
|
|
680
|
+
- lib/cucumber/filters/apply_after_hooks.rb
|
|
681
|
+
- lib/cucumber/filters/apply_after_step_hooks.rb
|
|
682
|
+
- lib/cucumber/filters/apply_around_hooks.rb
|
|
683
|
+
- lib/cucumber/filters/apply_before_hooks.rb
|
|
684
|
+
- lib/cucumber/filters/gated_receiver.rb
|
|
685
|
+
- lib/cucumber/filters/prepare_world.rb
|
|
686
|
+
- lib/cucumber/filters/quit.rb
|
|
687
|
+
- lib/cucumber/filters/randomizer.rb
|
|
688
|
+
- lib/cucumber/filters/tag_limits.rb
|
|
689
|
+
- lib/cucumber/filters/tag_limits/test_case_index.rb
|
|
690
|
+
- lib/cucumber/filters/tag_limits/verifier.rb
|
|
664
691
|
- lib/cucumber/formatter/ansicolor.rb
|
|
665
692
|
- lib/cucumber/formatter/console.rb
|
|
666
693
|
- lib/cucumber/formatter/cucumber.css
|
|
667
694
|
- lib/cucumber/formatter/cucumber.sass
|
|
668
695
|
- lib/cucumber/formatter/debug.rb
|
|
669
696
|
- lib/cucumber/formatter/duration.rb
|
|
697
|
+
- lib/cucumber/formatter/fanout.rb
|
|
670
698
|
- lib/cucumber/formatter/gherkin_formatter_adapter.rb
|
|
671
699
|
- lib/cucumber/formatter/gpretty.rb
|
|
672
700
|
- lib/cucumber/formatter/html.rb
|
|
701
|
+
- lib/cucumber/formatter/ignore_missing_messages.rb
|
|
673
702
|
- lib/cucumber/formatter/interceptor.rb
|
|
674
703
|
- lib/cucumber/formatter/io.rb
|
|
675
704
|
- lib/cucumber/formatter/jquery-min.js
|
|
676
705
|
- lib/cucumber/formatter/json.rb
|
|
677
706
|
- lib/cucumber/formatter/json_pretty.rb
|
|
678
707
|
- lib/cucumber/formatter/junit.rb
|
|
708
|
+
- lib/cucumber/formatter/legacy_api/adapter.rb
|
|
709
|
+
- lib/cucumber/formatter/legacy_api/ast.rb
|
|
710
|
+
- lib/cucumber/formatter/legacy_api/results.rb
|
|
711
|
+
- lib/cucumber/formatter/legacy_api/runtime_facade.rb
|
|
679
712
|
- lib/cucumber/formatter/pretty.rb
|
|
680
713
|
- lib/cucumber/formatter/progress.rb
|
|
681
714
|
- lib/cucumber/formatter/rerun.rb
|
|
@@ -684,14 +717,15 @@ files:
|
|
|
684
717
|
- lib/cucumber/formatter/summary.rb
|
|
685
718
|
- lib/cucumber/formatter/unicode.rb
|
|
686
719
|
- lib/cucumber/formatter/usage.rb
|
|
720
|
+
- lib/cucumber/hooks.rb
|
|
687
721
|
- lib/cucumber/language_support.rb
|
|
688
722
|
- lib/cucumber/language_support/language_methods.rb
|
|
689
723
|
- lib/cucumber/load_path.rb
|
|
690
|
-
- lib/cucumber/mappings.rb
|
|
691
724
|
- lib/cucumber/multiline_argument.rb
|
|
692
725
|
- lib/cucumber/multiline_argument/data_table.rb
|
|
693
726
|
- lib/cucumber/multiline_argument/doc_string.rb
|
|
694
727
|
- lib/cucumber/platform.rb
|
|
728
|
+
- lib/cucumber/project_initializer.rb
|
|
695
729
|
- lib/cucumber/rake/task.rb
|
|
696
730
|
- lib/cucumber/rb_support/rb_dsl.rb
|
|
697
731
|
- lib/cucumber/rb_support/rb_hook.rb
|
|
@@ -701,18 +735,15 @@ files:
|
|
|
701
735
|
- lib/cucumber/rb_support/rb_world.rb
|
|
702
736
|
- lib/cucumber/rb_support/regexp_argument_matcher.rb
|
|
703
737
|
- lib/cucumber/rb_support/snippet.rb
|
|
704
|
-
- lib/cucumber/reports/legacy_formatter.rb
|
|
705
738
|
- lib/cucumber/rspec/disable_option_parser.rb
|
|
706
739
|
- lib/cucumber/rspec/doubles.rb
|
|
740
|
+
- lib/cucumber/running_test_case.rb
|
|
707
741
|
- lib/cucumber/runtime.rb
|
|
742
|
+
- lib/cucumber/runtime/after_hooks.rb
|
|
743
|
+
- lib/cucumber/runtime/before_hooks.rb
|
|
708
744
|
- lib/cucumber/runtime/for_programming_languages.rb
|
|
709
|
-
- lib/cucumber/runtime/
|
|
710
|
-
- lib/cucumber/runtime/results.rb
|
|
745
|
+
- lib/cucumber/runtime/step_hooks.rb
|
|
711
746
|
- lib/cucumber/runtime/support_code.rb
|
|
712
|
-
- lib/cucumber/runtime/tag_limits.rb
|
|
713
|
-
- lib/cucumber/runtime/tag_limits/filter.rb
|
|
714
|
-
- lib/cucumber/runtime/tag_limits/test_case_index.rb
|
|
715
|
-
- lib/cucumber/runtime/tag_limits/verifier.rb
|
|
716
747
|
- lib/cucumber/runtime/user_interface.rb
|
|
717
748
|
- lib/cucumber/step_definition_light.rb
|
|
718
749
|
- lib/cucumber/step_definitions.rb
|
|
@@ -734,33 +765,37 @@ files:
|
|
|
734
765
|
- spec/cucumber/cli/profile_loader_spec.rb
|
|
735
766
|
- spec/cucumber/configuration_spec.rb
|
|
736
767
|
- spec/cucumber/constantize_spec.rb
|
|
768
|
+
- spec/cucumber/core_ext/instance_exec_spec.rb
|
|
737
769
|
- spec/cucumber/core_ext/proc_spec.rb
|
|
738
770
|
- spec/cucumber/file_specs_spec.rb
|
|
771
|
+
- spec/cucumber/filters/activate_steps_spec.rb
|
|
772
|
+
- spec/cucumber/filters/gated_receiver_spec.rb
|
|
773
|
+
- spec/cucumber/filters/tag_limits/test_case_index_spec.rb
|
|
774
|
+
- spec/cucumber/filters/tag_limits/verifier_spec.rb
|
|
775
|
+
- spec/cucumber/filters/tag_limits_spec.rb
|
|
739
776
|
- spec/cucumber/formatter/ansicolor_spec.rb
|
|
740
777
|
- spec/cucumber/formatter/debug_spec.rb
|
|
741
778
|
- spec/cucumber/formatter/duration_spec.rb
|
|
742
779
|
- spec/cucumber/formatter/html_spec.rb
|
|
743
780
|
- spec/cucumber/formatter/interceptor_spec.rb
|
|
744
781
|
- spec/cucumber/formatter/junit_spec.rb
|
|
782
|
+
- spec/cucumber/formatter/legacy_api/adapter_spec.rb
|
|
745
783
|
- spec/cucumber/formatter/pretty_spec.rb
|
|
746
784
|
- spec/cucumber/formatter/progress_spec.rb
|
|
785
|
+
- spec/cucumber/formatter/rerun_spec.rb
|
|
747
786
|
- spec/cucumber/formatter/spec_helper.rb
|
|
748
|
-
- spec/cucumber/
|
|
787
|
+
- spec/cucumber/hooks_spec.rb
|
|
749
788
|
- spec/cucumber/multiline_argument/data_table_spec.rb
|
|
789
|
+
- spec/cucumber/project_initializer_spec.rb
|
|
750
790
|
- spec/cucumber/rake/forked_spec.rb
|
|
751
791
|
- spec/cucumber/rb_support/rb_language_spec.rb
|
|
752
792
|
- spec/cucumber/rb_support/rb_step_definition_spec.rb
|
|
753
793
|
- spec/cucumber/rb_support/rb_transform_spec.rb
|
|
754
794
|
- spec/cucumber/rb_support/regexp_argument_matcher_spec.rb
|
|
755
795
|
- spec/cucumber/rb_support/snippet_spec.rb
|
|
756
|
-
- spec/cucumber/
|
|
796
|
+
- spec/cucumber/running_test_case_spec.rb
|
|
757
797
|
- spec/cucumber/runtime/for_programming_languages_spec.rb
|
|
758
|
-
- spec/cucumber/runtime/gated_receiver_spec.rb
|
|
759
|
-
- spec/cucumber/runtime/results_spec.rb
|
|
760
798
|
- spec/cucumber/runtime/support_code_spec.rb
|
|
761
|
-
- spec/cucumber/runtime/tag_limits/filter_spec.rb
|
|
762
|
-
- spec/cucumber/runtime/tag_limits/test_case_index_spec.rb
|
|
763
|
-
- spec/cucumber/runtime/tag_limits/verifier_spec.rb
|
|
764
799
|
- spec/cucumber/runtime_spec.rb
|
|
765
800
|
- spec/cucumber/sell_cucumbers.feature
|
|
766
801
|
- spec/cucumber/step_match_spec.rb
|
|
@@ -778,25 +813,25 @@ licenses:
|
|
|
778
813
|
metadata: {}
|
|
779
814
|
post_install_message:
|
|
780
815
|
rdoc_options:
|
|
781
|
-
-
|
|
816
|
+
- --charset=UTF-8
|
|
782
817
|
require_paths:
|
|
783
818
|
- lib
|
|
784
819
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
785
820
|
requirements:
|
|
786
|
-
- -
|
|
821
|
+
- - '>='
|
|
787
822
|
- !ruby/object:Gem::Version
|
|
788
823
|
version: 1.9.3
|
|
789
824
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
790
825
|
requirements:
|
|
791
|
-
- -
|
|
826
|
+
- - '>='
|
|
792
827
|
- !ruby/object:Gem::Version
|
|
793
|
-
version:
|
|
828
|
+
version: '0'
|
|
794
829
|
requirements: []
|
|
795
830
|
rubyforge_project:
|
|
796
831
|
rubygems_version: 2.0.14
|
|
797
832
|
signing_key:
|
|
798
833
|
specification_version: 4
|
|
799
|
-
summary: cucumber-2.0.0
|
|
834
|
+
summary: cucumber-2.0.0
|
|
800
835
|
test_files:
|
|
801
836
|
- features/docs/api/list_step_defs_as_json.feature
|
|
802
837
|
- features/docs/api/run_cli_main_with_existing_runtime.feature
|
|
@@ -822,9 +857,10 @@ test_files:
|
|
|
822
857
|
- features/docs/defining_steps/transforms.feature
|
|
823
858
|
- features/docs/exception_in_after_hook.feature
|
|
824
859
|
- features/docs/exception_in_after_step_hook.feature
|
|
860
|
+
- features/docs/exception_in_around_hook.feature
|
|
825
861
|
- features/docs/exception_in_before_hook.feature
|
|
862
|
+
- features/docs/extending_cucumber/custom_filter.feature
|
|
826
863
|
- features/docs/extending_cucumber/custom_formatter.feature
|
|
827
|
-
- features/docs/extending_cucumber/formatter_callbacks.feature
|
|
828
864
|
- features/docs/formatters/debug_formatter.feature
|
|
829
865
|
- features/docs/formatters/formatter_step_file_colon_line.feature
|
|
830
866
|
- features/docs/formatters/html_formatter.feature
|
|
@@ -845,17 +881,19 @@ test_files:
|
|
|
845
881
|
- features/docs/gherkin/using_descriptions.feature
|
|
846
882
|
- features/docs/gherkin/using_star_notation.feature
|
|
847
883
|
- features/docs/iso-8859-1.feature
|
|
848
|
-
- features/docs/output_from_hooks.feature
|
|
849
884
|
- features/docs/post_configuration_hook.feature
|
|
850
885
|
- features/docs/profiles.feature
|
|
851
886
|
- features/docs/rake_task.feature
|
|
852
887
|
- features/docs/raketask.feature
|
|
853
|
-
- features/docs/
|
|
854
|
-
- features/docs/wire_protocol.feature
|
|
855
|
-
- features/docs/
|
|
856
|
-
- features/docs/
|
|
857
|
-
- features/docs/
|
|
858
|
-
- features/docs/
|
|
888
|
+
- features/docs/wire_protocol/erb_configuration.feature
|
|
889
|
+
- features/docs/wire_protocol/handle_unexpected_response.feature
|
|
890
|
+
- features/docs/wire_protocol/invoke_message.feature
|
|
891
|
+
- features/docs/wire_protocol/readme.md
|
|
892
|
+
- features/docs/wire_protocol/snippets_message.feature
|
|
893
|
+
- features/docs/wire_protocol/step_matches_message.feature
|
|
894
|
+
- features/docs/wire_protocol/table_diffing.feature
|
|
895
|
+
- features/docs/wire_protocol/tags.feature
|
|
896
|
+
- features/docs/wire_protocol/timeouts.feature
|
|
859
897
|
- features/docs/work_in_progress.feature
|
|
860
898
|
- features/docs/writing_support_code/after_hooks.feature
|
|
861
899
|
- features/docs/writing_support_code/around_hooks.feature
|
|
@@ -883,33 +921,37 @@ test_files:
|
|
|
883
921
|
- spec/cucumber/cli/profile_loader_spec.rb
|
|
884
922
|
- spec/cucumber/configuration_spec.rb
|
|
885
923
|
- spec/cucumber/constantize_spec.rb
|
|
924
|
+
- spec/cucumber/core_ext/instance_exec_spec.rb
|
|
886
925
|
- spec/cucumber/core_ext/proc_spec.rb
|
|
887
926
|
- spec/cucumber/file_specs_spec.rb
|
|
927
|
+
- spec/cucumber/filters/activate_steps_spec.rb
|
|
928
|
+
- spec/cucumber/filters/gated_receiver_spec.rb
|
|
929
|
+
- spec/cucumber/filters/tag_limits/test_case_index_spec.rb
|
|
930
|
+
- spec/cucumber/filters/tag_limits/verifier_spec.rb
|
|
931
|
+
- spec/cucumber/filters/tag_limits_spec.rb
|
|
888
932
|
- spec/cucumber/formatter/ansicolor_spec.rb
|
|
889
933
|
- spec/cucumber/formatter/debug_spec.rb
|
|
890
934
|
- spec/cucumber/formatter/duration_spec.rb
|
|
891
935
|
- spec/cucumber/formatter/html_spec.rb
|
|
892
936
|
- spec/cucumber/formatter/interceptor_spec.rb
|
|
893
937
|
- spec/cucumber/formatter/junit_spec.rb
|
|
938
|
+
- spec/cucumber/formatter/legacy_api/adapter_spec.rb
|
|
894
939
|
- spec/cucumber/formatter/pretty_spec.rb
|
|
895
940
|
- spec/cucumber/formatter/progress_spec.rb
|
|
941
|
+
- spec/cucumber/formatter/rerun_spec.rb
|
|
896
942
|
- spec/cucumber/formatter/spec_helper.rb
|
|
897
|
-
- spec/cucumber/
|
|
943
|
+
- spec/cucumber/hooks_spec.rb
|
|
898
944
|
- spec/cucumber/multiline_argument/data_table_spec.rb
|
|
945
|
+
- spec/cucumber/project_initializer_spec.rb
|
|
899
946
|
- spec/cucumber/rake/forked_spec.rb
|
|
900
947
|
- spec/cucumber/rb_support/rb_language_spec.rb
|
|
901
948
|
- spec/cucumber/rb_support/rb_step_definition_spec.rb
|
|
902
949
|
- spec/cucumber/rb_support/rb_transform_spec.rb
|
|
903
950
|
- spec/cucumber/rb_support/regexp_argument_matcher_spec.rb
|
|
904
951
|
- spec/cucumber/rb_support/snippet_spec.rb
|
|
905
|
-
- spec/cucumber/
|
|
952
|
+
- spec/cucumber/running_test_case_spec.rb
|
|
906
953
|
- spec/cucumber/runtime/for_programming_languages_spec.rb
|
|
907
|
-
- spec/cucumber/runtime/gated_receiver_spec.rb
|
|
908
|
-
- spec/cucumber/runtime/results_spec.rb
|
|
909
954
|
- spec/cucumber/runtime/support_code_spec.rb
|
|
910
|
-
- spec/cucumber/runtime/tag_limits/filter_spec.rb
|
|
911
|
-
- spec/cucumber/runtime/tag_limits/test_case_index_spec.rb
|
|
912
|
-
- spec/cucumber/runtime/tag_limits/verifier_spec.rb
|
|
913
955
|
- spec/cucumber/runtime_spec.rb
|
|
914
956
|
- spec/cucumber/sell_cucumbers.feature
|
|
915
957
|
- spec/cucumber/step_match_spec.rb
|