Sha256: b10899add1a1587e756120c65443c7ad4d3904c5f50b425ead4795d3e566040e

Contents?: true

Size: 1.02 KB

Versions: 219

Compression:

Stored size: 1.02 KB

Contents

Feature: Exclude ruby and feature files from runs
  Developers should be able to easily exclude files from cucumber runs
  This is a nice feature to have in conjunction with profiles, so you can exclude
  certain environment files from certain runs.

  Scenario: exclude ruby files
    Given a standard Cucumber project directory structure
    And a file named "features/support/dont_require_me.rb"
    And a file named "features/step_definitions/fooz.rb"
    And a file named "features/step_definitions/foof.rb"
    And a file named "features/step_definitions/foot.rb"
    And a file named "features/support/require_me.rb"

    When I run cucumber features -q --verbose --exclude features/support/dont --exclude foo[zf]

    Then "features/support/require_me.rb" should be required
    And "features/step_definitions/foot.rb" should be required
    And "features/support/dont_require_me.rb" should not be required
    And "features/step_definitions/foof.rb" should not be required
    And "features/step_definitions/fooz.rb" should not be required

Version data entries

219 entries across 217 versions & 23 rubygems

Version Path
aslakhellesoy-cucumber-0.3.3.2 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.3.3 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.3.4 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.3.5 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.3.6 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.4 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.5 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.6.1 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.7.1 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.7.2 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.7.3 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.7.4 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.7.5 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.7 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.8 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.9.1 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.9.2 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.9.3 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.9.4 features/exclude_files.feature
aslakhellesoy-cucumber-0.3.9.5 features/exclude_files.feature