File: issue0065.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 (18 lines) | stat: -rw-r--r-- 533 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@issue
Feature: Issue #65  Unrecognized --tag-help argument

  The "behave --help" output refers to the option "--tag-help"
  in the description of the "--tags" option.
  The correct option for more help on tags is "--tags-help".

  Scenario: Ensure environment assumptions are correct (Sanity Check)
    Given a new working directory
    When I run "behave --help"
    Then the command output should contain:
      """
      --tags-help
      """
    But  the command output should not contain:
      """
      --tag-help
      """