features/cucumber_cli.feature in cucumber-0.3.100 vs features/cucumber_cli.feature in cucumber-0.3.101

- old
+ new

@@ -349,10 +349,21 @@ @sample_three @sample_four Scenario: Skipped Given missing + Feature: Step argument transformations + + Scenario: transform with matches + Then I should transform '10' to an Integer + + Scenario: transform with matches that capture + Then I should transform 'abc' to a Symbol + + Scenario: transform without matches + Then I should not transform '10' to an Integer + Feature: undefined multiline args Scenario: pystring Given a pystring \"\"\" @@ -362,12 +373,12 @@ Scenario: table Given a table | table | | example | - 26 scenarios (17 skipped, 8 undefined, 1 passed) - 42 steps (30 skipped, 12 undefined) + 29 scenarios (20 skipped, 8 undefined, 1 passed) + 45 steps (33 skipped, 12 undefined) """ Scenario: Multiple formatters and outputs When I run cucumber --format progress --out tmp/progress.txt --format pretty --out tmp/pretty.txt --dry-run features/lots_of_undefined.feature @@ -617,9 +628,13 @@ hello \"\"\" """ + + Scenario: Generate PDF with pdf formatter + When I run cucumber --format pdf --out tmp/sample.pdf --dry-run features/sample.feature + Then "examples/self_test/tmp/sample.pdf" should match "Pages 2" Scenario: Run feature elements which match a name using -n When I run cucumber -n Pisang -q features/ Then it should pass with """