1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
@sequential
Feature: Default paths for features in behave configfile
As a tester
I want to specify the default paths for features in the configuration file
That should be used if none are provided as command-line args
To support pre-pared/canned test environments
(and to support my laziness while using behave in a shell).
@setup
Scenario: Test Setup
Given a new working directory
And a file named "features/steps/steps.py" with:
"""
from behave import step
@step('a step passes')
def step_passes(context):
pass
"""
And a file named "features/alice.feature" with:
"""
Feature: Alice
Scenario: A1
Given a step passes
When a step passes
Then a step passes
"""
And a file named "features/bob.feature" with:
"""
Feature: Bob
Scenario: B1
When a step passes
"""
And a file named "more.features/charly.feature" with:
"""
Feature: Charly
Scenario: C1
Then a step passes
"""
And a file named "behave.ini" with:
"""
[behave]
show_timings = false
paths = features/bob.feature
more.features/charly.feature
"""
Scenario: Used default paths from behave configfile
When I run "behave -f plain"
Then it should pass with:
"""
2 features passed, 0 failed, 0 skipped
2 scenarios passed, 0 failed, 0 skipped
"""
And the command output should contain:
"""
Feature: Bob
Scenario: B1
When a step passes ... passed
Feature: Charly
Scenario: C1
Then a step passes ... passed
"""
But the command output should not contain:
"""
Feature: Alice
"""
Scenario: Command-line args can override default paths in configfile
When I run "behave -f plain features/alice.feature"
Then it should pass with:
"""
1 feature passed, 0 failed, 0 skipped
1 scenario passed, 0 failed, 0 skipped
3 steps passed, 0 failed, 0 skipped, 0 undefined
"""
And the command output should contain:
"""
Feature: Alice
Scenario: A1
"""
But the command output should not contain:
"""
Feature: Bob
"""
And the command output should not contain:
"""
Feature: Charly
"""
Scenario: Command-line args are provided (CASE 2)
When I run "behave -f plain features"
Then it should pass with:
"""
2 features passed, 0 failed, 0 skipped
2 scenarios passed, 0 failed, 0 skipped
"""
And the command output should contain:
"""
Feature: Alice
Scenario: A1
Given a step passes ... passed
When a step passes ... passed
Then a step passes ... passed
Feature: Bob
Scenario: B1
When a step passes ... passed
"""
But the command output should not contain:
"""
Feature: Charly
"""
|