File: issue0462.feature

package info (click to toggle)
behave 1.2.6-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,160 kB
  • sloc: python: 19,857; makefile: 137; sh: 18
file content (38 lines) | stat: -rw-r--r-- 1,016 bytes parent folder | download | duplicates (3)
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
@issue
Feature: Issue #462-- Invalid JSON output when --include option selects no features

  . Invalid JSON output is generated when no features are selected in a test-run.
  . For example, this may be the case when the --include option is used.


    Background:
      Given a new working directory
      And a file named "features/steps/pass_steps.py" with:
        """
        from behave import step

        @step('{word:w} step passes')
        def step_passes(context, word):
            pass
        """
      And a file named "features/passing.feature" with:
        """
        Feature:
          Scenario:
            Given a step passes
        """


    Scenario: Include Option selects no feature files
      When I run "behave -f json -i __unknown__.feature"
      Then it should pass with:
        """
        0 features passed, 0 failed, 0 skipped
        0 scenarios passed, 0 failed, 0 skipped
        """
      And the command output should contain:
        """
        [
        ]
        """