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 58 59 60 61 62 63 64 65 66 67 68 69
|
Feature: Make sure and check a directory does not exist
To setup a working environment, you may want to make sure, that a
directory does not exist or if you ran your command of a directory
was deleted.
Background:
Given I use a fixture named "cli-app"
Scenario: Delete existing directory
Given a file named "features/non-existence.feature" with:
"""
Feature: Non-Existence
Background:
Given a directory named "example.d" does not exist
Scenario: Non-Existence #1
Then the directory "example.d" should not exist
Scenario: Non-Existence #2
Then the directory "example.d" should not exist
Scenario: Non-Existence #3
Then the directory "example.d" should not exist
"""
When I run `cucumber`
Then the features should all pass
Scenario: Check if a directory does not exists
Given a file named "features/non-existence.feature" with:
"""
Feature: Non-Existence
Background:
Given a directory named "example.d" does not exist
Scenario: Non-Existence #1
Then the directory "example.d" should not exist
Scenario: Non-Existence #2
Then the directory named "example.d" should not exist
Scenario: Non-Existence #3
Then a directory named "example.d" should not exist
Scenario: Non-Existence #4
Then a directory named "example.d" should not exist anymore
Scenario: Non-Existence #5
Then the directory named "example.d" should not exist anymore
Scenario: Non-Existence #6
Then the directory "example.d" should not exist anymore
"""
When I run `cucumber`
Then the features should all pass
Scenario: Check for absence of a subset of directories
Given a file named "features/non-existence.feature" with:
"""
Feature: Non-Existence
Scenario: Non-Existence
Given the directory "lorem/ipsum/dolor" does not exist
And the directory "lorem/ipsum/amet" does not exist
Then the following directories should not exist:
| lorem/ipsum/dolor |
| lorem/ipsum/amet |
"""
When I run `cucumber`
Then the features should all pass
|