Sha256: f0d90bccd8c1fc4e8a04d6aa105b780dc116664de032abab3c22c5d584117348

Contents?: true

Size: 1.33 KB

Versions: 20

Compression:

Stored size: 1.33 KB

Contents

Feature: Make sure and check a file exists

  To setup a working environment, you may want to make sure, that a
  file exist or if you ran your command of a file
  was deleted.

  Background:
    Given I use a fixture named "cli-app"

  Scenario: Check for presence of a single file
    Given an empty file named "lorem/ipsum/dolor"
    Then a file named "lorem/ipsum/dolor" should exist

  Scenario: Check for presence of a subset of files
    Given a file named "features/existence.feature" with:
    """
    Feature: Existence
      Scenario: Existence
        Given an empty file named "lorem/ipsum/dolor"
        And an empty file named "lorem/ipsum/sit"
        And an empty file named "lorem/ipsum/amet"
        Then the following files should exist:
          | lorem/ipsum/dolor |
          | lorem/ipsum/amet  |
    """
    When I run `cucumber`
    Then the features should all pass

  Scenario: Check for presence of a single file using a regex
    Given a file named "features/non-existence.feature" with:
    """
    Feature: Existence
      Background:
        Given an empty file named "lorem/ipsum/dolor"

      Scenario: Existence #1
        Then a file matching %r<dolor$> should exist

      Scenario: Existence #2
        Then a file matching %r<ipsum/dolor> should exist
    """
    When I run `cucumber`
    Then the features should all pass

Version data entries

20 entries across 20 versions & 2 rubygems

Version Path
aruba-0.14.14 features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_file.feature
aruba-0.14.13 features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_file.feature
aruba-0.14.12 features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_file.feature
aruba-0.14.11 features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_file.feature
aruba-0.14.10 features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_file.feature
aruba-0.14.9 features/steps/filesystem/existence_of_file.feature
aruba-0.14.8 features/steps/filesystem/existence_of_file.feature
aruba-0.14.7 features/steps/filesystem/existence_of_file.feature
aruba-0.14.6 features/steps/filesystem/existence_of_file.feature
aruba-0.14.5 features/steps/filesystem/existence_of_file.feature
aruba-0.14.4 features/steps/filesystem/existence_of_file.feature
aruba-0.14.3 features/steps/filesystem/existence_of_file.feature
aruba-win-fix-0.14.2 features/steps/filesystem/existence_of_file.feature
aruba-0.14.2 features/steps/filesystem/existence_of_file.feature
aruba-0.14.1 features/steps/filesystem/existence_of_file.feature
aruba-0.14.0 features/steps/filesystem/existence_of_file.feature
aruba-0.13.0 features/steps/filesystem/existence_of_file.feature
aruba-0.12.0 features/steps/filesystem/existence_of_file.feature
aruba-0.11.2 features/steps/filesystem/existence_of_file.feature
aruba-0.11.1 features/steps/filesystem/existence_of_file.feature