recumber 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +18 -1
- data/bin/recumber +7 -3
- data/lib/recumber/cucumber_output_parser.rb +1 -1
- data/log/cucumber/last_run.log +194 -0
- data/recumber.gemspec +1 -1
- data/spec/lib/recumber/cucumber_output_parser_spec.rb +5 -4
- data/spec/lib/recumber/cucumber_runner_spec.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MWUzNDU3M2M5MDU0MjgzZTUzMzcwMTIyNDNmNjY5ZDc0MmJkODNkYQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ODdmNWNiMjcwY2M5ZWRjYWU2NjJjZWY0ZTMxYTA3Mjk3NmRjZTBiMA==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZWRjMzk5NWJiMmYxNGFiMDQwYTYxMTVmZDFlNTEwZmJhNWUxMzZlNDQyMWRi
|
10
|
+
MzM0YmNiZmQzYTM4N2QzMDdiOWM2Mjg0Yzk0NjcyNzg5MTUzNjMyNzljM2Iy
|
11
|
+
OWY1YmRhMjZmYWQ1ZGI1NzMwYTBmYzY1M2RhN2E2YzJlMzU5ODI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZTljODY2NjYzMDY4N2FiNDczZjlhMjFiNWM2NWFiZTJjMWY0ODZkOTg4YWVh
|
14
|
+
NjZlZDkxOGYyMDNiZGI4NmE5MTVmMjUyMjM2OGYxNzMzNGM1NjY3MDU3MGMz
|
15
|
+
MDVhOWM0OTAwMzY1MjEyZDNiMjM1N2Y3OGE1MTM0YzNlYjM1ZWY=
|
data/README.md
CHANGED
@@ -1,4 +1,21 @@
|
|
1
1
|
recumber
|
2
2
|
========
|
3
3
|
|
4
|
-
Automatically reruns failed cucumber tests.
|
4
|
+
Automatically reruns failed cucumber tests.
|
5
|
+
Most handy when re-evaluating cucumber failures caused by parallel flakiness
|
6
|
+
|
7
|
+
Usage:
|
8
|
+
========
|
9
|
+
Run cucumber and pipe its output to a logfile
|
10
|
+
|
11
|
+
```bash
|
12
|
+
$ cucumber | tee log/cucumber/last_run.log
|
13
|
+
```
|
14
|
+
|
15
|
+
Now run recumber from the command line.
|
16
|
+
Recumber will parse the logfile at the relative path specified above
|
17
|
+
|
18
|
+
```bash
|
19
|
+
$ recumber
|
20
|
+
```
|
21
|
+
|
data/bin/recumber
CHANGED
@@ -8,10 +8,14 @@ options = {}
|
|
8
8
|
|
9
9
|
parse_command_line_args
|
10
10
|
|
11
|
-
|
12
|
-
# puts "argf: #{pipe_input}"
|
11
|
+
cuke_log_path = "log/cucumber/last_run.log"
|
13
12
|
|
14
|
-
|
13
|
+
unless File.exists? cuke_log_path
|
14
|
+
puts "ERROR! Cannot find cucumber logfile at: #{cuke_log_path}"
|
15
|
+
exit
|
16
|
+
end
|
17
|
+
|
18
|
+
cuke_input = File.read(cuke_log_path)
|
15
19
|
|
16
20
|
print_title
|
17
21
|
|
@@ -0,0 +1,194 @@
|
|
1
|
+
Using recorded test runtime
|
2
|
+
6 processes for 89 features, ~ 14 features per process
|
3
|
+
Rack::File headers parameter replaces cache_control after Rack 1.5.
|
4
|
+
Rack::File headers parameter replaces cache_control after Rack 1.5.
|
5
|
+
Rack::File headers parameter replaces cache_control after Rack 1.5.
|
6
|
+
Rack::File headers parameter replaces cache_control after Rack 1.5.
|
7
|
+
Rack::File headers parameter replaces cache_control after Rack 1.5.
|
8
|
+
Rack::File headers parameter replaces cache_control after Rack 1.5.
|
9
|
+
Using the parallel profile...
|
10
|
+
Lowering logging level to :warn for parallel ...
|
11
|
+
Using the parallel profile...
|
12
|
+
Lowering logging level to :warn for parallel ...
|
13
|
+
Using the parallel profile...
|
14
|
+
Lowering logging level to :warn for parallel ...
|
15
|
+
Using the parallel profile...
|
16
|
+
Lowering logging level to :warn for parallel ...
|
17
|
+
Using the parallel profile...
|
18
|
+
Lowering logging level to :warn for parallel ...
|
19
|
+
Using the parallel profile...
|
20
|
+
Lowering logging level to :warn for parallel ...
|
21
|
+
You are using WebMock 1.11.0. VCR is known to work with WebMock >= 1.8.0, < 1.11. It may not work with this version.
|
22
|
+
You are using WebMock 1.11.0. VCR is known to work with WebMock >= 1.8.0, < 1.11. It may not work with this version.
|
23
|
+
You are using WebMock 1.11.0. VCR is known to work with WebMock >= 1.8.0, < 1.11. It may not work with this version.
|
24
|
+
You are using WebMock 1.11.0. VCR is known to work with WebMock >= 1.8.0, < 1.11. It may not work with this version.
|
25
|
+
You are using WebMock 1.11.0. VCR is known to work with WebMock >= 1.8.0, < 1.11. It may not work with this version.
|
26
|
+
You are using WebMock 1.11.0. VCR is known to work with WebMock >= 1.8.0, < 1.11. It may not work with this version.
|
27
|
+
......................................................................................................................................................................................................................................................................................................................................F---Saved file screenshot_2013-05-15-17-16-29.496
|
28
|
+
.................................WARNING: There appears to be a bug in WebMock's after_request hook
|
29
|
+
and VCR is attempting to work around it. Some VCR features
|
30
|
+
may not work properly.
|
31
|
+
WARNING: There appears to be a bug in WebMock's after_request hook
|
32
|
+
and VCR is attempting to work around it. Some VCR features
|
33
|
+
may not work properly.
|
34
|
+
.............................................................................................................................................................F-.Saved file screenshot_2013-05-15-17-17-32.104
|
35
|
+
.........................................F----Saved file screenshot_2013-05-15-17-17-46.822
|
36
|
+
.......................................................................................................................FSaved file screenshot_2013-05-15-17-18-25.956
|
37
|
+
.....................................................................................--------..................WARNING: There appears to be a bug in WebMock's after_request hook
|
38
|
+
and VCR is attempting to work around it. Some VCR features
|
39
|
+
may not work properly.
|
40
|
+
WARNING: There appears to be a bug in WebMock's after_request hook
|
41
|
+
and VCR is attempting to work around it. Some VCR features
|
42
|
+
may not work properly.
|
43
|
+
........................................................................................................F-Saved file screenshot_2013-05-15-17-19-47.777
|
44
|
+
.......................F-Saved file screenshot_2013-05-15-17-19-54.548
|
45
|
+
..............................F----Saved file screenshot_2013-05-15-17-20-02.796
|
46
|
+
..-------..........................F---Saved file screenshot_2013-05-15-17-20-10.753
|
47
|
+
.....................................................................................................................................................................................................................................................................................................................F---.Saved file screenshot_2013-05-15-17-21-56.357
|
48
|
+
........................................................................................FSaved file screenshot_2013-05-15-17-22-22.916
|
49
|
+
..........................................................................F-..Saved file screenshot_2013-05-15-17-22-47.887
|
50
|
+
.....................................................................................................................................................................WARNING: There appears to be a bug in WebMock's after_request hook
|
51
|
+
and VCR is attempting to work around it. Some VCR features
|
52
|
+
may not work properly.
|
53
|
+
WARNING: There appears to be a bug in WebMock's after_request hook
|
54
|
+
and VCR is attempting to work around it. Some VCR features
|
55
|
+
may not work properly.
|
56
|
+
........................................................................................................................................................................................................................................................................................................................................................................................................F-------Saved file screenshot_2013-05-15-17-25-29.357
|
57
|
+
.......................
|
58
|
+
|
59
|
+
(::) failed steps (::)
|
60
|
+
|
61
|
+
Unable to find link or button "Submit a Startup" (Capybara::ElementNotFound)
|
62
|
+
./features/step_definitions/applying_for_funding_steps.rb:180:in `/^I open a funding application with a funding stage question$/'
|
63
|
+
features/startups/application_response/funding_stage_populated_from_preferences.feature:12:in `When I open a funding application with a funding stage question'
|
64
|
+
|
65
|
+
Unable to find link or button "Submit a Startup" (Capybara::ElementNotFound)
|
66
|
+
./features/step_definitions/applying_for_funding_steps.rb:180:in `/^I open a funding application with a funding stage question$/'
|
67
|
+
features/startups/application_response/funding_stage_populated_from_preferences.feature:20:in `When I open a funding application with a funding stage question'
|
68
|
+
|
69
|
+
Unable to find link or button "Submit a Startup" (Capybara::ElementNotFound)
|
70
|
+
./features/step_definitions/startups/application_response_propogation_steps.rb:16:in `/^I fill in a funding application with:$/'
|
71
|
+
features/startups/application_response/propagation.feature:34:in `When I fill in a funding application with:'
|
72
|
+
|
73
|
+
Unable to find link or button "Submit a Startup" (Capybara::ElementNotFound)
|
74
|
+
./features/step_definitions/startups/application_response_propogation_steps.rb:16:in `/^I fill in a funding application with:$/'
|
75
|
+
features/startups/application_response/propagation.feature:102:in `When I fill in a funding application with:'
|
76
|
+
|
77
|
+
Failing Scenarios:
|
78
|
+
cucumber -p parallel features/startups/application_response/funding_stage_populated_from_preferences.feature:8 # Scenario: No stage specified in profile
|
79
|
+
cucumber -p parallel features/startups/application_response/funding_stage_populated_from_preferences.feature:16 # Scenario: Stage specified in profile
|
80
|
+
cucumber -p parallel features/startups/application_response/propagation.feature:7 # Scenario: Choosing to propogate values to my preferences
|
81
|
+
cucumber -p parallel features/startups/application_response/propagation.feature:85 # Scenario: Choosing NOT to propogate values to my preferences
|
82
|
+
|
83
|
+
56 scenarios (4 failed, 52 passed)
|
84
|
+
418 steps (4 failed, 9 skipped, 405 passed)
|
85
|
+
10m51.671s
|
86
|
+
..................................................................................................................................................................................
|
87
|
+
|
88
|
+
(::) failed steps (::)
|
89
|
+
|
90
|
+
Unable to find link or button "Submit a Startup" (Capybara::ElementNotFound)
|
91
|
+
./features/step_definitions/deal_list_steps.rb:421:in `block (2 levels) in <top (required)>'
|
92
|
+
./features/step_definitions/deal_list_steps.rb:420:in `/^"(.*?)" submits their application form$/'
|
93
|
+
features/groups/deal_stages.feature:80:in `And "Ben's Tash" submits their application form'
|
94
|
+
|
95
|
+
expected to find text "Event For My Friend" in "1 Sandy Kling HOME STARTUPS INVESTORS ALL All Investors Startups People Edit Wunsch, Barton and Schamberger Angel Group Hermistonside, South Carolina, Holy See (Vatican City State) 1 Members ADMIN Preferences PUBLIC Group Profile Portfolio PRIVATE Dashboard Deal List Events Documents MEMBERS Member List Subgroups All Group Events (1) My Events (0) Create New Event MAY 15 Event For My Friend May 15 - Eastern Time (US & Canada) No Response 1 Invited, 0 Attending, 0 Maybe Investor (Sandy Kling) Current Language: en Check translation Company Info Trusted Network Get Funded Find & Manage Investments Venture Funds & Groups Blog Interviews Contact Us @ 2013 Gust, LLC. All rights reserved Terms of Service Privacy FAQs Feedback & Support English Français Español Português 简体中文 Русский" (RSpec::Expectations::ExpectationNotMetError)
|
96
|
+
./features/support/helpers/event_helpers.rb:35:in `invite_user_via_email'
|
97
|
+
./features/step_definitions/group_steps.rb:1411:in `/^I create an event and invite the investor$/'
|
98
|
+
features/groups/inviting_to_events.feature:8:in `And I create an event and invite the investor'
|
99
|
+
|
100
|
+
expected #has_no_selector?("form.edit-event") to return true, got false (RSpec::Expectations::ExpectationNotMetError)
|
101
|
+
./features/support/helpers/event_helpers.rb:76:in `save_edit_event_form'
|
102
|
+
./features/step_definitions/inviting_to_events_steps.rb:100:in `/^I cannot re-invite the investor group member to the event$/'
|
103
|
+
features/groups/inviting_to_events.feature:44:in `Then I cannot re-invite the investor group member to the event'
|
104
|
+
|
105
|
+
Unable to find link or button "Submit a Startup" (Capybara::ElementNotFound)
|
106
|
+
./features/step_definitions/applying_for_funding_steps.rb:202:in `/^I fill in a funding application with funding stage "(.*?)"$/'
|
107
|
+
features/startups/application_response/funding_stage_propagates_to_preferences.feature:11:in `When I fill in a funding application with funding stage "Series A Round"'
|
108
|
+
|
109
|
+
Failing Scenarios:
|
110
|
+
cucumber -p parallel features/groups/deal_stages.feature:72 # Scenario: Automaticaly granting access to deals by associating subgroups to the "New Deals" stage
|
111
|
+
cucumber -p parallel features/groups/inviting_to_events.feature:3 # Scenario: Event creation: inviting an non-group-member investor via their registered email
|
112
|
+
cucumber -p parallel features/groups/inviting_to_events.feature:34 # Scenario: Group admin can invite an active investor-group member via the dropdown
|
113
|
+
cucumber -p parallel features/startups/application_response/funding_stage_propagates_to_preferences.feature:8 # Scenario: Choosing to (or not) propogate stage to my preferences
|
114
|
+
|
115
|
+
67 scenarios (4 failed, 63 passed)
|
116
|
+
471 steps (4 failed, 12 skipped, 455 passed)
|
117
|
+
11m32.038s
|
118
|
+
|
119
|
+
|
120
|
+
(::) failed steps (::)
|
121
|
+
|
122
|
+
expected to find text "These are the products & services that we offer." in "Monique Walsh HOME STARTUPS INVESTORS ALL All Investors Startups People Back to Deal List > Startup Profile Edit Grady, Farrell and Toy East Ericville, Indiana, Saint Helena Biotechnology Aliquam facilis accusantium quasi. ADMIN Dashboard Relationships PUBLIC Startup Profile PRIVATE Business Details Financing Documents COMPANY FINANCIALS (SHP) Edit Previous Capital unspecified Revenue Run Rate unspecified Monthly Burn Rate unspecified Revenue Driver unspecified ANNUAL FINANCIALS 2012 Edit 2013 Edit 2014 Edit 2015 Edit 2016 Edit Revenue Driver Revenue Expenditure Profit (Loss) + Add Another Year PRODUCT/SERVICES Edit These are the products & services that we offer. CUSTOMER PROBLEM Edit TARGET MARKET Edit CUSTOMERS Edit SALES/MARKETING STRATEGY Edit BUSINESS MODEL Edit COMPETITORS Edit COMPETITIVE ADVANTAGE Edit MANAGEMENT TEAM Edit Contact Edit Wilhelm Hackett Email East Ericville, Indiana, Saint Helena Entrepreneur (Monique Walsh) Current Language: en Check translation Company Info Trusted Network Get Funded Find & Manage Investments Venture Funds & Groups Blog Interviews Contact Us @ 2013 Gust, LLC. All rights reserved Terms of Service Privacy FAQs Feedback & Support English Français Español Português 简体中文 Русский" (RSpec::Expectations::ExpectationNotMetError)
|
123
|
+
./features/step_definitions/startup_steps.rb:130:in `/^I should see my company's product services$/'
|
124
|
+
features/startups/startups.feature:48:in `Then I should see my company's product services'
|
125
|
+
|
126
|
+
Failing Scenarios:
|
127
|
+
cucumber -p parallel features/startups/startups.feature:41 # Scenario: Editing a Startup's Business Details
|
128
|
+
|
129
|
+
63 scenarios (1 failed, 62 passed)
|
130
|
+
406 steps (1 failed, 405 passed)
|
131
|
+
11m32.109s
|
132
|
+
.......................
|
133
|
+
|
134
|
+
44 scenarios (44 passed)
|
135
|
+
308 steps (308 passed)
|
136
|
+
11m38.822s
|
137
|
+
...............................
|
138
|
+
|
139
|
+
(::) failed steps (::)
|
140
|
+
|
141
|
+
Unable to find link or button "Create Internal Deal" (Capybara::ElementNotFound)
|
142
|
+
./features/step_definitions/internal_deal_steps.rb:55:in `/^I submit the internal deal form$/'
|
143
|
+
features/groups/internal_deal.feature:14:in `When I submit the internal deal form'
|
144
|
+
|
145
|
+
Element not found in the cache - perhaps the page has changed since it was looked up (Selenium::WebDriver::Error::StaleElementReferenceError)
|
146
|
+
[remote server] resource://fxdriver/modules/web_element_cache.js:7349:in `fxdriver.cache.getElementAt'
|
147
|
+
[remote server] file:///var/folders/44/mxq47wmn4812x3yprndq71480000gn/T/webdriver-profile20130515-91566-1799nrc/extensions/fxdriver@googlecode.com/components/command_processor.js:6946:in `Utils.getElementAt'
|
148
|
+
[remote server] file:///var/folders/44/mxq47wmn4812x3yprndq71480000gn/T/webdriver-profile20130515-91566-1799nrc/extensions/fxdriver@googlecode.com/components/command_processor.js:9942:in `WebElement.isElementDisplayed'
|
149
|
+
[remote server] file:///var/folders/44/mxq47wmn4812x3yprndq71480000gn/T/webdriver-profile20130515-91566-1799nrc/extensions/fxdriver@googlecode.com/components/command_processor.js:10421:in `DelayedCommand.prototype.executeInternal_/h'
|
150
|
+
[remote server] file:///var/folders/44/mxq47wmn4812x3yprndq71480000gn/T/webdriver-profile20130515-91566-1799nrc/extensions/fxdriver@googlecode.com/components/command_processor.js:10426:in `DelayedCommand.prototype.executeInternal_'
|
151
|
+
[remote server] file:///var/folders/44/mxq47wmn4812x3yprndq71480000gn/T/webdriver-profile20130515-91566-1799nrc/extensions/fxdriver@googlecode.com/components/command_processor.js:10366:in `DelayedCommand.prototype.execute/<'
|
152
|
+
./features/support/helpers/layout_helpers.rb:79:in `wait_for_modal_dialog_to_close'
|
153
|
+
./features/support/helpers/deal_room_helpers.rb:8:in `add_and_submit_deal_members_in_form'
|
154
|
+
./features/step_definitions/inviting_members_to_deals_steps.rb:67:in `/^I can invite an unregistered user to the deal via their email address$/'
|
155
|
+
features/groups/inviting_members_to_deals.feature:12:in `Then I can invite an unregistered user to the deal via their email address'
|
156
|
+
|
157
|
+
Failing Scenarios:
|
158
|
+
cucumber -p parallel features/groups/internal_deal.feature:7 # Scenario: Creating an internal deal
|
159
|
+
cucumber -p parallel features/groups/inviting_members_to_deals.feature:7 # Scenario: Deal admin can invite a new user via their email
|
160
|
+
|
161
|
+
54 scenarios (2 failed, 52 passed)
|
162
|
+
304 steps (2 failed, 4 skipped, 298 passed)
|
163
|
+
11m54.148s
|
164
|
+
..
|
165
|
+
|
166
|
+
(::) failed steps (::)
|
167
|
+
|
168
|
+
Element not found in the cache - perhaps the page has changed since it was looked up (Selenium::WebDriver::Error::StaleElementReferenceError)
|
169
|
+
[remote server] resource://fxdriver/modules/web_element_cache.js:7349:in `fxdriver.cache.getElementAt'
|
170
|
+
[remote server] file:///var/folders/44/mxq47wmn4812x3yprndq71480000gn/T/webdriver-profile20130515-91575-1bixz52/extensions/fxdriver@googlecode.com/components/command_processor.js:6946:in `Utils.getElementAt'
|
171
|
+
[remote server] file:///var/folders/44/mxq47wmn4812x3yprndq71480000gn/T/webdriver-profile20130515-91575-1bixz52/extensions/fxdriver@googlecode.com/components/command_processor.js:9860:in `WebElement.getElementText'
|
172
|
+
[remote server] file:///var/folders/44/mxq47wmn4812x3yprndq71480000gn/T/webdriver-profile20130515-91575-1bixz52/extensions/fxdriver@googlecode.com/components/command_processor.js:10421:in `DelayedCommand.prototype.executeInternal_/h'
|
173
|
+
[remote server] file:///var/folders/44/mxq47wmn4812x3yprndq71480000gn/T/webdriver-profile20130515-91575-1bixz52/extensions/fxdriver@googlecode.com/components/command_processor.js:10426:in `DelayedCommand.prototype.executeInternal_'
|
174
|
+
[remote server] file:///var/folders/44/mxq47wmn4812x3yprndq71480000gn/T/webdriver-profile20130515-91575-1bixz52/extensions/fxdriver@googlecode.com/components/command_processor.js:10366:in `DelayedCommand.prototype.execute/<'
|
175
|
+
./features/step_definitions/deal_room_member_steps.rb:111:in `/^I blank out the review$/'
|
176
|
+
features/groups/deal_room_member.feature:92:in `When I blank out the review'
|
177
|
+
|
178
|
+
Failing Scenarios:
|
179
|
+
cucumber -p parallel features/groups/deal_room_member.feature:83 # Scenario: Reviewing a deal
|
180
|
+
|
181
|
+
63 scenarios (1 failed, 62 passed)
|
182
|
+
412 steps (1 failed, 3 skipped, 408 passed)
|
183
|
+
11m56.886s
|
184
|
+
|
185
|
+
347 scenarios (12 failed, 335 passed)
|
186
|
+
2319 steps (12 failed, 28 skipped, 2279 passed)
|
187
|
+
|
188
|
+
Took 738.292295 seconds
|
189
|
+
Cucumbers Failed
|
190
|
+
|
191
|
+
real 15m36.462s
|
192
|
+
user 69m23.422s
|
193
|
+
sys 4m52.395s
|
194
|
+
|
data/recumber.gemspec
CHANGED
@@ -11,6 +11,7 @@ describe CucumberOutputParser do
|
|
11
11
|
|
12
12
|
cucumber features/thing.feature # here's a comment
|
13
13
|
cucumber features/other_thing.feature # oh no, another comment
|
14
|
+
cucumber -p parallel features/yet_other_thing.feature # oh no, another comment
|
14
15
|
|
15
16
|
user 1.3.4,
|
16
17
|
sys 328
|
@@ -19,22 +20,22 @@ describe CucumberOutputParser do
|
|
19
20
|
|
20
21
|
it "removes non-cucumber-command lines" do
|
21
22
|
output = described_class.parse_failed_features(cucumber_output)
|
22
|
-
output.should == ["features/thing.feature", "features/other_thing.feature"]
|
23
|
+
output.should == ["features/thing.feature", "features/other_thing.feature", "features/yet_other_thing.feature"]
|
23
24
|
end
|
24
25
|
|
25
26
|
it "removes cucumber commands at the beginning of the line" do
|
26
27
|
output = described_class.parse_failed_features(cucumber_output)
|
27
|
-
output.should == ["features/thing.feature", "features/other_thing.feature"]
|
28
|
+
output.should == ["features/thing.feature", "features/other_thing.feature", "features/yet_other_thing.feature"]
|
28
29
|
end
|
29
30
|
|
30
31
|
it "removes cucumber comments at the end on the line" do
|
31
32
|
output = described_class.parse_failed_features(cucumber_output)
|
32
|
-
output.should == ["features/thing.feature", "features/other_thing.feature"]
|
33
|
+
output.should == ["features/thing.feature", "features/other_thing.feature", "features/yet_other_thing.feature"]
|
33
34
|
end
|
34
35
|
|
35
36
|
it "collapses newlines" do
|
36
37
|
output = described_class.parse_failed_features(cucumber_output)
|
37
|
-
output.should == ["features/thing.feature", "features/other_thing.feature"]
|
38
|
+
output.should == ["features/thing.feature", "features/other_thing.feature", "features/yet_other_thing.feature"]
|
38
39
|
end
|
39
40
|
end
|
40
41
|
|
@@ -8,7 +8,7 @@ describe CucumberRunner do
|
|
8
8
|
|
9
9
|
|
10
10
|
it "calls 'system' with the joined array" do
|
11
|
-
CucumberRunner.should_receive(
|
11
|
+
CucumberRunner.should_receive(:system).with("cucumber cmd_1 cmd_2")
|
12
12
|
CucumberRunner.rerun_features(feature_paths)
|
13
13
|
end
|
14
14
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: recumber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Todd Mohney
|
@@ -26,6 +26,7 @@ files:
|
|
26
26
|
- lib/recumber.rb
|
27
27
|
- lib/recumber/cucumber_output_parser.rb
|
28
28
|
- lib/recumber/cucumber_runner.rb
|
29
|
+
- log/cucumber/last_run.log
|
29
30
|
- recumber.gemspec
|
30
31
|
- spec/lib/recumber/cucumber_output_parser_spec.rb
|
31
32
|
- spec/lib/recumber/cucumber_runner_spec.rb
|