features/docs/gherkin/outlines.feature in cucumber-3.0.0.pre.1 vs features/docs/gherkin/outlines.feature in cucumber-3.0.0.pre.2

- old
+ new

@@ -41,10 +41,11 @@ """ Given(/^passing without a table$/) { } Given(/^failing without a table$/) { raise RuntimeError } """ + @todo-windows Scenario: Run scenario outline with filtering on outline name When I run `cucumber -q features/outline_sample.feature` Then it should fail with: """ Feature: Outline Sample @@ -74,10 +75,11 @@ 5 scenarios (1 failed, 1 undefined, 3 passed) 8 steps (1 failed, 2 skipped, 1 undefined, 4 passed) """ + @todo-windows Scenario: Run scenario outline steps only When I run `cucumber -q features/outline_sample.feature:7` Then it should fail with: """ Feature: Outline Sample @@ -106,10 +108,11 @@ 4 scenarios (1 failed, 1 undefined, 2 passed) 8 steps (1 failed, 2 skipped, 1 undefined, 4 passed) """ + @todo-windows Scenario: Run single failing scenario outline table row When I run `cucumber -q features/outline_sample.feature:12` Then it should fail with: """ Feature: Outline Sample @@ -132,9 +135,10 @@ 1 scenario (1 failed) 2 steps (1 failed, 1 skipped) """ + @todo-windows Scenario: Run all with progress formatter When I run `cucumber -q --format progress features/outline_sample.feature` Then it should fail with exactly: """ U-..F-..