cucumber 2.0.0.beta.3 → 2.0.0.beta.4
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/History.md +20 -3
- data/cucumber.gemspec +2 -1
- data/examples/tcl/features/step_definitions/fib_steps.rb +1 -1
- data/features/docs/extending_cucumber/custom_formatter.feature +65 -7
- data/features/docs/formatters/debug_formatter.feature +24 -17
- data/features/docs/formatters/pretty_formatter.feature +42 -0
- data/features/docs/formatters/rerun_formatter.feature +3 -2
- data/lib/cucumber/cli/configuration.rb +3 -7
- data/lib/cucumber/cli/main.rb +1 -1
- data/lib/cucumber/{runtime → filters}/gated_receiver.rb +5 -1
- data/lib/cucumber/filters/quit.rb +24 -0
- data/lib/cucumber/filters/randomizer.rb +36 -0
- data/lib/cucumber/filters/tag_limits.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/formatter/console.rb +2 -2
- data/lib/cucumber/formatter/debug.rb +1 -8
- data/lib/cucumber/formatter/fanout.rb +27 -0
- data/lib/cucumber/formatter/gherkin_formatter_adapter.rb +1 -3
- data/lib/cucumber/formatter/html.rb +12 -4
- data/lib/cucumber/formatter/ignore_missing_messages.rb +20 -0
- data/lib/cucumber/formatter/junit.rb +2 -2
- data/lib/cucumber/formatter/legacy_api/adapter.rb +1008 -0
- data/lib/cucumber/formatter/legacy_api/ast.rb +374 -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 +4 -0
- data/lib/cucumber/formatter/rerun.rb +14 -88
- data/lib/cucumber/language_support/language_methods.rb +0 -54
- data/lib/cucumber/multiline_argument/data_table.rb +3 -4
- data/lib/cucumber/platform.rb +1 -1
- data/lib/cucumber/runtime.rb +41 -107
- 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 +39 -530
- data/spec/cucumber/formatter/html_spec.rb +56 -0
- data/spec/cucumber/formatter/legacy_api/adapter_spec.rb +1902 -0
- data/spec/cucumber/formatter/pretty_spec.rb +128 -0
- data/spec/cucumber/formatter/rerun_spec.rb +106 -0
- data/spec/cucumber/formatter/spec_helper.rb +6 -2
- data/spec/cucumber/rb_support/rb_language_spec.rb +2 -2
- data/spec/cucumber/rb_support/rb_step_definition_spec.rb +1 -1
- data/spec/cucumber/runtime_spec.rb +1 -5
- data/spec/spec_helper.rb +2 -0
- metadata +44 -29
- data/features/docs/extending_cucumber/formatter_callbacks.feature +0 -370
- data/features/docs/output_from_hooks.feature +0 -128
- data/lib/cucumber/reports/legacy_formatter.rb +0 -1349
- data/lib/cucumber/runtime/results.rb +0 -64
- data/lib/cucumber/runtime/tag_limits.rb +0 -15
- data/lib/cucumber/runtime/tag_limits/filter.rb +0 -31
- data/spec/cucumber/reports/legacy_formatter_spec.rb +0 -1860
- data/spec/cucumber/runtime/results_spec.rb +0 -88
@@ -263,6 +263,96 @@ OUTPUT
|
|
263
263
|
"""
|
264
264
|
bar
|
265
265
|
"""
|
266
|
+
OUTPUT
|
267
|
+
end
|
268
|
+
end
|
269
|
+
|
270
|
+
describe "with output from hooks" do
|
271
|
+
define_feature <<-FEATURE
|
272
|
+
Feature:
|
273
|
+
Scenario:
|
274
|
+
Given this step passes
|
275
|
+
Scenario Outline:
|
276
|
+
Given this step <status>
|
277
|
+
Examples:
|
278
|
+
| status |
|
279
|
+
| passes |
|
280
|
+
FEATURE
|
281
|
+
|
282
|
+
define_steps do
|
283
|
+
Before do
|
284
|
+
puts "Before hook"
|
285
|
+
end
|
286
|
+
AfterStep do
|
287
|
+
puts "AfterStep hook"
|
288
|
+
end
|
289
|
+
After do
|
290
|
+
puts "After hook"
|
291
|
+
end
|
292
|
+
Given(/^this step passes$/) {}
|
293
|
+
end
|
294
|
+
|
295
|
+
it "displays hook output appropriately " do
|
296
|
+
expect( @out.string ).to include <<OUTPUT
|
297
|
+
Feature:
|
298
|
+
|
299
|
+
Scenario:
|
300
|
+
Before hook
|
301
|
+
Given this step passes
|
302
|
+
AfterStep hook
|
303
|
+
After hook
|
304
|
+
|
305
|
+
Scenario Outline:
|
306
|
+
Given this step <status>
|
307
|
+
|
308
|
+
Examples:
|
309
|
+
| status |
|
310
|
+
| passes | Before hook, AfterStep hook, After hook
|
311
|
+
|
312
|
+
2 scenarios (2 passed)
|
313
|
+
2 steps (2 passed)
|
314
|
+
OUTPUT
|
315
|
+
end
|
316
|
+
end
|
317
|
+
|
318
|
+
describe "with background and output from hooks" do
|
319
|
+
define_feature <<-FEATURE
|
320
|
+
Feature:
|
321
|
+
Background:
|
322
|
+
Given this step passes
|
323
|
+
Scenario:
|
324
|
+
Given this step passes
|
325
|
+
FEATURE
|
326
|
+
|
327
|
+
define_steps do
|
328
|
+
Before do
|
329
|
+
puts "Before hook"
|
330
|
+
end
|
331
|
+
AfterStep do
|
332
|
+
puts "AfterStep hook"
|
333
|
+
end
|
334
|
+
After do
|
335
|
+
puts "After hook"
|
336
|
+
end
|
337
|
+
Given(/^this step passes$/) {}
|
338
|
+
end
|
339
|
+
|
340
|
+
it "displays hook output appropriately " do
|
341
|
+
expect( @out.string ).to include <<OUTPUT
|
342
|
+
Feature:
|
343
|
+
|
344
|
+
Background:
|
345
|
+
Before hook
|
346
|
+
Given this step passes
|
347
|
+
AfterStep hook
|
348
|
+
|
349
|
+
Scenario:
|
350
|
+
Given this step passes
|
351
|
+
AfterStep hook
|
352
|
+
After hook
|
353
|
+
|
354
|
+
1 scenario (1 passed)
|
355
|
+
2 steps (2 passed)
|
266
356
|
OUTPUT
|
267
357
|
end
|
268
358
|
end
|
@@ -491,6 +581,44 @@ OUTPUT
|
|
491
581
|
end
|
492
582
|
end
|
493
583
|
end
|
584
|
+
|
585
|
+
describe "with a scenario outline in en-lol" do
|
586
|
+
define_feature <<-FEATURE
|
587
|
+
# language: en-lol
|
588
|
+
OH HAI: STUFFING
|
589
|
+
|
590
|
+
MISHUN SRSLY: CUCUMBR
|
591
|
+
I CAN HAZ IN TEH BEGINNIN <BEGINNIN> CUCUMBRZ
|
592
|
+
WEN I EAT <EAT> CUCUMBRZ
|
593
|
+
DEN I HAS <EAT> CUCUMBERZ IN MAH BELLY
|
594
|
+
AN IN TEH END <KTHXBAI> CUCUMBRZ KTHXBAI
|
595
|
+
|
596
|
+
EXAMPLZ:
|
597
|
+
| BEGINNIN | EAT | KTHXBAI |
|
598
|
+
| 3 | 2 | 1 |
|
599
|
+
FEATURE
|
600
|
+
|
601
|
+
it "outputs localized text" do
|
602
|
+
lines = <<-OUTPUT
|
603
|
+
OH HAI: STUFFING
|
604
|
+
|
605
|
+
MISHUN SRSLY: CUCUMBR
|
606
|
+
I CAN HAZ IN TEH BEGINNIN <BEGINNIN> CUCUMBRZ
|
607
|
+
WEN I EAT <EAT> CUCUMBRZ
|
608
|
+
DEN I HAS <EAT> CUCUMBERZ IN MAH BELLY
|
609
|
+
AN IN TEH END <KTHXBAI> CUCUMBRZ KTHXBAI
|
610
|
+
EXAMPLZ:
|
611
|
+
MISHUN: | 3 | 2 | 1 |
|
612
|
+
I CAN HAZ IN TEH BEGINNIN 3 CUCUMBRZ
|
613
|
+
WEN I EAT 2 CUCUMBRZ
|
614
|
+
DEN I HAS 2 CUCUMBERZ IN MAH BELLY
|
615
|
+
AN IN TEH END 1 CUCUMBRZ KTHXBAI
|
616
|
+
OUTPUT
|
617
|
+
lines.split("\n").each do |line|
|
618
|
+
expect(@out.string).to include line.strip
|
619
|
+
end
|
620
|
+
end
|
621
|
+
end
|
494
622
|
end
|
495
623
|
end
|
496
624
|
|
@@ -0,0 +1,106 @@
|
|
1
|
+
require 'cucumber/formatter/rerun'
|
2
|
+
require 'cucumber/core'
|
3
|
+
require 'cucumber/core/gherkin/writer'
|
4
|
+
|
5
|
+
module Cucumber::Formatter
|
6
|
+
describe Rerun do
|
7
|
+
include Cucumber::Core::Gherkin::Writer
|
8
|
+
include Cucumber::Core
|
9
|
+
|
10
|
+
# after_test_case
|
11
|
+
context 'when 2 scenarios fail in the same file' do
|
12
|
+
class StepTestMappings
|
13
|
+
Failure = Class.new(StandardError)
|
14
|
+
|
15
|
+
def test_case(test_case, mapper)
|
16
|
+
self
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_step(step, mapper)
|
20
|
+
mapper.map { raise Failure } if step.name =~ /fail/
|
21
|
+
mapper.map {} if step.name =~ /pass/
|
22
|
+
self
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'Prints the locations of the failed scenarios' do
|
27
|
+
gherkin = gherkin('foo.feature') do
|
28
|
+
feature do
|
29
|
+
scenario do
|
30
|
+
step 'failing'
|
31
|
+
end
|
32
|
+
|
33
|
+
scenario do
|
34
|
+
step 'failing'
|
35
|
+
end
|
36
|
+
|
37
|
+
scenario do
|
38
|
+
step 'passing'
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
io = StringIO.new
|
43
|
+
report = Rerun.new(double, io, double)
|
44
|
+
mappings = StepTestMappings.new
|
45
|
+
|
46
|
+
execute [gherkin], mappings, report
|
47
|
+
|
48
|
+
expect( io.string ).to eq 'foo.feature:3:6'
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
context 'with failures in multiple files' do
|
53
|
+
it 'prints the location of the failed scenarios in each file' do
|
54
|
+
foo = gherkin('foo.feature') do
|
55
|
+
feature do
|
56
|
+
scenario do
|
57
|
+
step 'failing'
|
58
|
+
end
|
59
|
+
|
60
|
+
scenario do
|
61
|
+
step 'failing'
|
62
|
+
end
|
63
|
+
|
64
|
+
scenario do
|
65
|
+
step 'passing'
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
bar = gherkin('bar.feature') do
|
71
|
+
feature do
|
72
|
+
scenario do
|
73
|
+
step 'failing'
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
io = StringIO.new
|
79
|
+
report = Rerun.new(double, io, double)
|
80
|
+
mappings = StepTestMappings.new
|
81
|
+
|
82
|
+
execute [foo, bar], mappings, report
|
83
|
+
|
84
|
+
expect(io.string).to eq 'foo.feature:3:6 bar.feature:3'
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
context 'when there are no failing scenarios' do
|
89
|
+
it 'prints nothing' do
|
90
|
+
gherkin = gherkin('foo.feature') do
|
91
|
+
feature do
|
92
|
+
scenario do
|
93
|
+
step 'passing'
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
io = StringIO.new
|
99
|
+
report = Rerun.new(double, io, double)
|
100
|
+
mappings = StepTestMappings.new
|
101
|
+
|
102
|
+
execute [gherkin], mappings, report
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|
@@ -28,9 +28,13 @@ module Cucumber
|
|
28
28
|
@mappings ||= Mappings.new
|
29
29
|
end
|
30
30
|
|
31
|
-
require 'cucumber/
|
31
|
+
require 'cucumber/formatter/legacy_api/adapter'
|
32
32
|
def report
|
33
|
-
@report ||=
|
33
|
+
@report ||= LegacyApi::Adapter.new(
|
34
|
+
Fanout.new([@formatter]),
|
35
|
+
runtime.results,
|
36
|
+
runtime.support_code,
|
37
|
+
runtime.configuration)
|
34
38
|
end
|
35
39
|
|
36
40
|
require 'cucumber/core/gherkin/document'
|
@@ -91,7 +91,7 @@ module Cucumber
|
|
91
91
|
dsl.World {}
|
92
92
|
|
93
93
|
begin
|
94
|
-
rb.
|
94
|
+
rb.begin_scenario(nil)
|
95
95
|
raise "Should fail"
|
96
96
|
rescue RbSupport::NilWorld => e
|
97
97
|
expect(e.message).to eq "World procs should never return nil"
|
@@ -111,7 +111,7 @@ module Cucumber
|
|
111
111
|
|
112
112
|
it "implicitlys extend world with modules" do
|
113
113
|
dsl.World(ModuleOne, ModuleTwo)
|
114
|
-
rb.
|
114
|
+
rb.begin_scenario(double('scenario').as_null_object)
|
115
115
|
class << rb.current_world
|
116
116
|
extend RSpec::Matchers
|
117
117
|
|
@@ -15,18 +15,14 @@ module Cucumber
|
|
15
15
|
|
16
16
|
describe "#configure" do
|
17
17
|
let(:support_code) { double(Runtime::SupportCode).as_null_object }
|
18
|
-
let(:results) { double(Runtime::Results).as_null_object }
|
19
18
|
let(:new_configuration) { double('New configuration')}
|
20
19
|
|
21
20
|
before(:each) do
|
22
21
|
allow(Runtime::SupportCode).to receive(:new) { support_code }
|
23
|
-
allow(Runtime::Results).to receive(:new) { results }
|
24
22
|
end
|
25
23
|
|
26
|
-
it "tells the support_code
|
24
|
+
it "tells the support_code about the new configuration" do
|
27
25
|
expect(support_code).to receive(:configure).with(new_configuration)
|
28
|
-
expect(results).to receive(:configure).with(new_configuration)
|
29
|
-
|
30
26
|
subject.configure(new_configuration)
|
31
27
|
end
|
32
28
|
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cucumber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0.beta.
|
4
|
+
version: 2.0.0.beta.4
|
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: 2014-
|
11
|
+
date: 2014-12-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cucumber-core
|
@@ -106,14 +106,14 @@ dependencies:
|
|
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
|
@@ -212,6 +212,20 @@ dependencies:
|
|
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
|
@@ -568,7 +582,6 @@ files:
|
|
568
582
|
- features/docs/exception_in_after_step_hook.feature
|
569
583
|
- features/docs/exception_in_before_hook.feature
|
570
584
|
- features/docs/extending_cucumber/custom_formatter.feature
|
571
|
-
- features/docs/extending_cucumber/formatter_callbacks.feature
|
572
585
|
- features/docs/formatters/debug_formatter.feature
|
573
586
|
- features/docs/formatters/formatter_step_file_colon_line.feature
|
574
587
|
- features/docs/formatters/html_formatter.feature
|
@@ -589,7 +602,6 @@ files:
|
|
589
602
|
- features/docs/gherkin/using_descriptions.feature
|
590
603
|
- features/docs/gherkin/using_star_notation.feature
|
591
604
|
- features/docs/iso-8859-1.feature
|
592
|
-
- features/docs/output_from_hooks.feature
|
593
605
|
- features/docs/post_configuration_hook.feature
|
594
606
|
- features/docs/profiles.feature
|
595
607
|
- features/docs/rake_task.feature
|
@@ -661,21 +673,33 @@ files:
|
|
661
673
|
- lib/cucumber/core_ext/string.rb
|
662
674
|
- lib/cucumber/errors.rb
|
663
675
|
- lib/cucumber/file_specs.rb
|
676
|
+
- lib/cucumber/filters/gated_receiver.rb
|
677
|
+
- lib/cucumber/filters/quit.rb
|
678
|
+
- lib/cucumber/filters/randomizer.rb
|
679
|
+
- lib/cucumber/filters/tag_limits.rb
|
680
|
+
- lib/cucumber/filters/tag_limits/test_case_index.rb
|
681
|
+
- lib/cucumber/filters/tag_limits/verifier.rb
|
664
682
|
- lib/cucumber/formatter/ansicolor.rb
|
665
683
|
- lib/cucumber/formatter/console.rb
|
666
684
|
- lib/cucumber/formatter/cucumber.css
|
667
685
|
- lib/cucumber/formatter/cucumber.sass
|
668
686
|
- lib/cucumber/formatter/debug.rb
|
669
687
|
- lib/cucumber/formatter/duration.rb
|
688
|
+
- lib/cucumber/formatter/fanout.rb
|
670
689
|
- lib/cucumber/formatter/gherkin_formatter_adapter.rb
|
671
690
|
- lib/cucumber/formatter/gpretty.rb
|
672
691
|
- lib/cucumber/formatter/html.rb
|
692
|
+
- lib/cucumber/formatter/ignore_missing_messages.rb
|
673
693
|
- lib/cucumber/formatter/interceptor.rb
|
674
694
|
- lib/cucumber/formatter/io.rb
|
675
695
|
- lib/cucumber/formatter/jquery-min.js
|
676
696
|
- lib/cucumber/formatter/json.rb
|
677
697
|
- lib/cucumber/formatter/json_pretty.rb
|
678
698
|
- lib/cucumber/formatter/junit.rb
|
699
|
+
- lib/cucumber/formatter/legacy_api/adapter.rb
|
700
|
+
- lib/cucumber/formatter/legacy_api/ast.rb
|
701
|
+
- lib/cucumber/formatter/legacy_api/results.rb
|
702
|
+
- lib/cucumber/formatter/legacy_api/runtime_facade.rb
|
679
703
|
- lib/cucumber/formatter/pretty.rb
|
680
704
|
- lib/cucumber/formatter/progress.rb
|
681
705
|
- lib/cucumber/formatter/rerun.rb
|
@@ -701,18 +725,11 @@ files:
|
|
701
725
|
- lib/cucumber/rb_support/rb_world.rb
|
702
726
|
- lib/cucumber/rb_support/regexp_argument_matcher.rb
|
703
727
|
- lib/cucumber/rb_support/snippet.rb
|
704
|
-
- lib/cucumber/reports/legacy_formatter.rb
|
705
728
|
- lib/cucumber/rspec/disable_option_parser.rb
|
706
729
|
- lib/cucumber/rspec/doubles.rb
|
707
730
|
- lib/cucumber/runtime.rb
|
708
731
|
- lib/cucumber/runtime/for_programming_languages.rb
|
709
|
-
- lib/cucumber/runtime/gated_receiver.rb
|
710
|
-
- lib/cucumber/runtime/results.rb
|
711
732
|
- 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
733
|
- lib/cucumber/runtime/user_interface.rb
|
717
734
|
- lib/cucumber/step_definition_light.rb
|
718
735
|
- lib/cucumber/step_definitions.rb
|
@@ -736,14 +753,20 @@ files:
|
|
736
753
|
- spec/cucumber/constantize_spec.rb
|
737
754
|
- spec/cucumber/core_ext/proc_spec.rb
|
738
755
|
- spec/cucumber/file_specs_spec.rb
|
756
|
+
- spec/cucumber/filters/gated_receiver_spec.rb
|
757
|
+
- spec/cucumber/filters/tag_limits/test_case_index_spec.rb
|
758
|
+
- spec/cucumber/filters/tag_limits/verifier_spec.rb
|
759
|
+
- spec/cucumber/filters/tag_limits_spec.rb
|
739
760
|
- spec/cucumber/formatter/ansicolor_spec.rb
|
740
761
|
- spec/cucumber/formatter/debug_spec.rb
|
741
762
|
- spec/cucumber/formatter/duration_spec.rb
|
742
763
|
- spec/cucumber/formatter/html_spec.rb
|
743
764
|
- spec/cucumber/formatter/interceptor_spec.rb
|
744
765
|
- spec/cucumber/formatter/junit_spec.rb
|
766
|
+
- spec/cucumber/formatter/legacy_api/adapter_spec.rb
|
745
767
|
- spec/cucumber/formatter/pretty_spec.rb
|
746
768
|
- spec/cucumber/formatter/progress_spec.rb
|
769
|
+
- spec/cucumber/formatter/rerun_spec.rb
|
747
770
|
- spec/cucumber/formatter/spec_helper.rb
|
748
771
|
- spec/cucumber/mappings_spec.rb
|
749
772
|
- spec/cucumber/multiline_argument/data_table_spec.rb
|
@@ -753,14 +776,8 @@ files:
|
|
753
776
|
- spec/cucumber/rb_support/rb_transform_spec.rb
|
754
777
|
- spec/cucumber/rb_support/regexp_argument_matcher_spec.rb
|
755
778
|
- spec/cucumber/rb_support/snippet_spec.rb
|
756
|
-
- spec/cucumber/reports/legacy_formatter_spec.rb
|
757
779
|
- spec/cucumber/runtime/for_programming_languages_spec.rb
|
758
|
-
- spec/cucumber/runtime/gated_receiver_spec.rb
|
759
|
-
- spec/cucumber/runtime/results_spec.rb
|
760
780
|
- 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
781
|
- spec/cucumber/runtime_spec.rb
|
765
782
|
- spec/cucumber/sell_cucumbers.feature
|
766
783
|
- spec/cucumber/step_match_spec.rb
|
@@ -793,10 +810,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
793
810
|
version: 1.3.1
|
794
811
|
requirements: []
|
795
812
|
rubyforge_project:
|
796
|
-
rubygems_version: 2.
|
813
|
+
rubygems_version: 2.2.2
|
797
814
|
signing_key:
|
798
815
|
specification_version: 4
|
799
|
-
summary: cucumber-2.0.0.beta.
|
816
|
+
summary: cucumber-2.0.0.beta.4
|
800
817
|
test_files:
|
801
818
|
- features/docs/api/list_step_defs_as_json.feature
|
802
819
|
- features/docs/api/run_cli_main_with_existing_runtime.feature
|
@@ -824,7 +841,6 @@ test_files:
|
|
824
841
|
- features/docs/exception_in_after_step_hook.feature
|
825
842
|
- features/docs/exception_in_before_hook.feature
|
826
843
|
- features/docs/extending_cucumber/custom_formatter.feature
|
827
|
-
- features/docs/extending_cucumber/formatter_callbacks.feature
|
828
844
|
- features/docs/formatters/debug_formatter.feature
|
829
845
|
- features/docs/formatters/formatter_step_file_colon_line.feature
|
830
846
|
- features/docs/formatters/html_formatter.feature
|
@@ -845,7 +861,6 @@ test_files:
|
|
845
861
|
- features/docs/gherkin/using_descriptions.feature
|
846
862
|
- features/docs/gherkin/using_star_notation.feature
|
847
863
|
- features/docs/iso-8859-1.feature
|
848
|
-
- features/docs/output_from_hooks.feature
|
849
864
|
- features/docs/post_configuration_hook.feature
|
850
865
|
- features/docs/profiles.feature
|
851
866
|
- features/docs/rake_task.feature
|
@@ -885,14 +900,20 @@ test_files:
|
|
885
900
|
- spec/cucumber/constantize_spec.rb
|
886
901
|
- spec/cucumber/core_ext/proc_spec.rb
|
887
902
|
- spec/cucumber/file_specs_spec.rb
|
903
|
+
- spec/cucumber/filters/gated_receiver_spec.rb
|
904
|
+
- spec/cucumber/filters/tag_limits/test_case_index_spec.rb
|
905
|
+
- spec/cucumber/filters/tag_limits/verifier_spec.rb
|
906
|
+
- spec/cucumber/filters/tag_limits_spec.rb
|
888
907
|
- spec/cucumber/formatter/ansicolor_spec.rb
|
889
908
|
- spec/cucumber/formatter/debug_spec.rb
|
890
909
|
- spec/cucumber/formatter/duration_spec.rb
|
891
910
|
- spec/cucumber/formatter/html_spec.rb
|
892
911
|
- spec/cucumber/formatter/interceptor_spec.rb
|
893
912
|
- spec/cucumber/formatter/junit_spec.rb
|
913
|
+
- spec/cucumber/formatter/legacy_api/adapter_spec.rb
|
894
914
|
- spec/cucumber/formatter/pretty_spec.rb
|
895
915
|
- spec/cucumber/formatter/progress_spec.rb
|
916
|
+
- spec/cucumber/formatter/rerun_spec.rb
|
896
917
|
- spec/cucumber/formatter/spec_helper.rb
|
897
918
|
- spec/cucumber/mappings_spec.rb
|
898
919
|
- spec/cucumber/multiline_argument/data_table_spec.rb
|
@@ -902,14 +923,8 @@ test_files:
|
|
902
923
|
- spec/cucumber/rb_support/rb_transform_spec.rb
|
903
924
|
- spec/cucumber/rb_support/regexp_argument_matcher_spec.rb
|
904
925
|
- spec/cucumber/rb_support/snippet_spec.rb
|
905
|
-
- spec/cucumber/reports/legacy_formatter_spec.rb
|
906
926
|
- spec/cucumber/runtime/for_programming_languages_spec.rb
|
907
|
-
- spec/cucumber/runtime/gated_receiver_spec.rb
|
908
|
-
- spec/cucumber/runtime/results_spec.rb
|
909
927
|
- 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
928
|
- spec/cucumber/runtime_spec.rb
|
914
929
|
- spec/cucumber/sell_cucumbers.feature
|
915
930
|
- spec/cucumber/step_match_spec.rb
|