Sha256: 7c8e88a72cbb74316d9f9dfe357a3e6302fc9a939ff4367a0cd9a8641cb76bc0

Contents?: true

Size: 1.23 KB

Versions: 20

Compression:

Stored size: 1.23 KB

Contents

Feature: Feature files can be collected from arbitrary parts of the codebase.


  Acceptance criteria

  Feature files can be collected from:
    1. directories


  Background: Setup test codebase
    Given a directory "feature_directory"
    And a directory "feature_directory/nested_directory_1"
    And the following feature file "test_file_1.feature":
    """
    Feature: The test feature 1.
    """
    And the file "test_file_1.feature" is read
    And a directory "feature_directory/nested_directory_2"
    And the following feature file "test_file_2.feature":
    """
    Feature: The test feature 2.
    """
    And the file "test_file_2.feature" is read
    When the directory "feature_directory" is read
    And the directory "feature_directory/nested_directory_1" is read
    And the directory "feature_directory/nested_directory_2" is read


  Scenario: Feature files can be collected from directories
    Then the files collected from directory "1" are as follows:
      | test_file_1.feature |
      | test_file_2.feature |
    And the files collected from directory "2" are as follows:
      | test_file_1.feature |
    And the files collected from directory "3" are as follows:
      | test_file_2.feature |

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
cucumber_analytics-1.6.0 testing/cucumber/features/analysis/feature_file_collection.feature
cucumber_analytics-1.5.2 features/analysis/feature_file_collection.feature
cucumber_analytics-1.5.1 features/analysis/feature_file_collection.feature
cucumber_analytics-1.5.0 features/analysis/feature_file_collection.feature
cucumber_analytics-1.4.2 features/analysis/feature_file_collection.feature
cucumber_analytics-1.4.1 features/analysis/feature_file_collection.feature
cucumber_analytics-1.4.0 features/analysis/feature_file_collection.feature
cucumber_analytics-1.3.0 features/analysis/feature_file_collection.feature
cucumber_analytics-1.2.0 features/analysis/feature_file_collection.feature
cucumber_analytics-1.1.1 features/analysis/feature_file_collection.feature
cucumber_analytics-1.0.0 features/analysis/feature_file_collection.feature
cucumber_analytics-0.0.9 features/analysis/feature_file_collection.feature
cucumber_analytics-0.0.8 features/analysis/feature_file_collection.feature
cucumber_analytics-0.0.7 features/analysis/feature_file_collection.feature
cucumber_analytics-0.0.6 features/analysis/feature_file_collection.feature
cucumber_analytics-0.0.5 features/analysis/feature_file_collection.feature
cucumber_analytics-0.0.4 features/analysis/feature_file_collection.feature
cucumber_analytics-0.0.3 features/analysis/feature_file_collection.feature
cucumber_analytics-0.0.2 features/analysis/feature_file_collection.feature
cucumber_analytics-0.0.1 features/analysis/feature_file_collection.feature