File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
Feature : Dry Run
2
+
3
+ Dry run gives you a way to quickly scan your features without actually running them.
4
+
2
5
- Invokes formatters without executing the steps.
3
6
- This also omits the loading of your support/env.rb file if it exists.
4
7
@@ -23,7 +26,8 @@ Feature: Dry Run
23
26
0m0.012s
24
27
25
28
"""
26
- Scenario : In the strict mode
29
+
30
+ Scenario : In strict mode
27
31
Given a file named "features/test.feature" with:
28
32
"""
29
33
Feature: test
@@ -44,7 +48,8 @@ Feature: Dry Run
44
48
0m0.012s
45
49
46
50
"""
47
- Scenario : In the strict mode with an undefined step
51
+
52
+ Scenario : In strict mode with an undefined step
48
53
Given a file named "features/test.feature" with:
49
54
"""
50
55
Feature: test
Original file line number Diff line number Diff line change 1
1
Feature : Excluding ruby and feature files from runs
2
+
2
3
Developers are able to easily exclude files from cucumber runs
3
4
This is a nice feature to have in conjunction with profiles, so you can exclude
4
5
certain environment files from certain runs.
@@ -9,9 +10,7 @@ Feature: Excluding ruby and feature files from runs
9
10
And an empty file named "features/step_definitions/foof.rb"
10
11
And an empty file named "features/step_definitions/foot.rb"
11
12
And an empty file named "features/support/require_me.rb"
12
-
13
13
When I run `cucumber features -q --verbose --exclude features/support/dont --exclude foo[zf]`
14
-
15
14
Then "features/support/require_me.rb" should be required
16
15
And "features/step_definitions/foot.rb" should be required
17
16
And "features/support/dont_require_me.rb" should not be required
You can’t perform that action at this time.
0 commit comments