Sha256: 278594669b0a9d5d40dae79417cb6bcc05e03174659a3f820c862c311bd40ae0

Contents?: true

Size: 1.7 KB

Versions: 20

Compression:

Stored size: 1.7 KB

Contents

Feature: Make sure and check a directory exists

  To setup a working environment, you may want to make sure, that a
  directory exist.

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

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

      Scenario: Existence #1
        Then the directory "lorem/ipsum/dolor" should exist

      Scenario: Existence #2
        Then the directory named "lorem/ipsum/dolor" should exist

      Scenario: Existence #3
        Then a directory named "lorem/ipsum/dolor" should exist
    """
    When I run `cucumber`
    Then the features should all pass

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


  Scenario: Check for presence of a subset of directories
    Given a file named "features/existence.feature" with:
    """
    Feature: Existence
      Scenario: Existence
        Given an empty directory "lorem/ipsum/dolor"
        And an empty directory "lorem/ipsum/amet"
        And an empty directory "lorem/ipsum/sit"
        Then the following directories should exist:
          | lorem/ipsum/dolor |
          | lorem/ipsum/amet  |
    """
    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_directory.feature
aruba-0.14.13 features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_directory.feature
aruba-0.14.12 features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_directory.feature
aruba-0.14.11 features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_directory.feature
aruba-0.14.10 features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_directory.feature
aruba-0.14.9 features/steps/filesystem/existence_of_directory.feature
aruba-0.14.8 features/steps/filesystem/existence_of_directory.feature
aruba-0.14.7 features/steps/filesystem/existence_of_directory.feature
aruba-0.14.6 features/steps/filesystem/existence_of_directory.feature
aruba-0.14.5 features/steps/filesystem/existence_of_directory.feature
aruba-0.14.4 features/steps/filesystem/existence_of_directory.feature
aruba-0.14.3 features/steps/filesystem/existence_of_directory.feature
aruba-win-fix-0.14.2 features/steps/filesystem/existence_of_directory.feature
aruba-0.14.2 features/steps/filesystem/existence_of_directory.feature
aruba-0.14.1 features/steps/filesystem/existence_of_directory.feature
aruba-0.14.0 features/steps/filesystem/existence_of_directory.feature
aruba-0.13.0 features/steps/filesystem/existence_of_directory.feature
aruba-0.12.0 features/steps/filesystem/existence_of_directory.feature
aruba-0.11.2 features/steps/filesystem/existence_of_directory.feature
aruba-0.11.1 features/steps/filesystem/existence_of_directory.feature