features/cucumber_cli.feature in cucumber-0.3.103 vs features/cucumber_cli.feature in cucumber-0.3.104

- old
+ new

@@ -199,11 +199,11 @@ 9 steps (9 passed) """ Scenario: --dry-run - When I run cucumber --dry-run --no-snippets features/*.feature --tags ~@lots + When I run cucumber --dry-run --no-source features/*.feature --tags ~@lots Then it should pass with """ Feature: Calling undefined step Scenario: Call directly @@ -368,11 +368,11 @@ 42 steps (30 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 + When I run cucumber --format progress --out tmp/progress.txt --format pretty --out tmp/pretty.txt --no-source --dry-run features/lots_of_undefined.feature And "examples/self_test/tmp/progress.txt" should contain """ UUUUU 1 scenario (1 undefined) @@ -503,11 +503,11 @@ 3 steps (1 failed, 1 undefined, 1 passed) """ Scenario: Run with a negative tag - When I run cucumber -q features/sample.feature --dry-run --tags ~@four + When I run cucumber -q features/sample.feature --no-source --dry-run --tags ~@four Then it should pass with """ # Feature comment @one Feature: Sample @@ -527,11 +527,11 @@ 2 steps (1 skipped, 1 undefined) """ Scenario: Run with limited tag count, blowing it on scenario - When I run cucumber -q features/tags_sample.feature --dry-run --tags @sample_three:1 + When I run cucumber -q features/tags_sample.feature --no-source --dry-run --tags @sample_three:1 Then it should fail with """ @sample_one Feature: Tag samples @@ -555,10 +555,10 @@ features/tags_sample.feature:16 """ Scenario: Run with limited tag count, blowing it via feature inheritance - When I run cucumber -q features/tags_sample.feature --dry-run --tags @sample_one:1 + When I run cucumber -q features/tags_sample.feature --no-source --dry-run --tags @sample_one:1 Then it should fail with """ @sample_one Feature: Tag samples