File: tags.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-- 411 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@spam
Feature: handle tags
  Tags may be set at various levels in various ways.

  Scenario: nothing changes
    Given the tag "spam" is set

  @ham @cram
  Scenario: adding the ham
    Given the tag "spam" is set
      and the tag "ham" is set
      and the tag "cram" is set

  @ham
  Scenario: adding the ham
    Given the tag "spam" is set
      and the tag "ham" is set
      and the tag "cram" is not set