1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
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
|