File: bug_464.feature

package info (click to toggle)
cucumber 1.3.17-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,296 kB
  • ctags: 1,812
  • sloc: ruby: 13,576; python: 28; sh: 10; makefile: 10; tcl: 3
file content (16 lines) | stat: -rw-r--r-- 498 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Feature: https://rspec.lighthouseapp.com/projects/16211/tickets/464
  Scenario: Limiting with tags which do not exist in the features
    Given a standard Cucumber project directory structure
    And a file named "features/f.feature" with:
      """
      Feature: Test
      In order to test
      As a tester
      I want to test

        @tag
        Scenario: Testing
          Given I'm a test
      """
    When I run cucumber -q features/f.feature --tag @i_dont_exist
    Then it should pass