Skip to content

Commit 313d36b

Browse files
committed
Clean up some features
1 parent 4bd6745 commit 313d36b

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

features/docs/cli/dry_run.feature

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
Feature: Dry Run
2+
3+
Dry run gives you a way to quickly scan your features without actually running them.
4+
25
- Invokes formatters without executing the steps.
36
- This also omits the loading of your support/env.rb file if it exists.
47

@@ -23,7 +26,8 @@ Feature: Dry Run
2326
0m0.012s
2427
2528
"""
26-
Scenario: In the strict mode
29+
30+
Scenario: In strict mode
2731
Given a file named "features/test.feature" with:
2832
"""
2933
Feature: test
@@ -44,7 +48,8 @@ Feature: Dry Run
4448
0m0.012s
4549
4650
"""
47-
Scenario: In the strict mode with an undefined step
51+
52+
Scenario: In strict mode with an undefined step
4853
Given a file named "features/test.feature" with:
4954
"""
5055
Feature: test

features/docs/cli/exclude_files.feature

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Feature: Excluding ruby and feature files from runs
2+
23
Developers are able to easily exclude files from cucumber runs
34
This is a nice feature to have in conjunction with profiles, so you can exclude
45
certain environment files from certain runs.
@@ -9,9 +10,7 @@ Feature: Excluding ruby and feature files from runs
910
And an empty file named "features/step_definitions/foof.rb"
1011
And an empty file named "features/step_definitions/foot.rb"
1112
And an empty file named "features/support/require_me.rb"
12-
1313
When I run `cucumber features -q --verbose --exclude features/support/dont --exclude foo[zf]`
14-
1514
Then "features/support/require_me.rb" should be required
1615
And "features/step_definitions/foot.rb" should be required
1716
And "features/support/dont_require_me.rb" should not be required

0 commit comments

Comments
 (0)