Sha256: dc0ff1aedfdf88f93f21ddcbcf3d36a0d8a42d2e9084f7841de3d141329763b0
Contents?: true
Size: 1.09 KB
Versions: 20
Compression:
Stored size: 1.09 KB
Contents
Feature: Remove a directory Background: Given I use a fixture named "cli-app" Scenario: Remove an existing directory Given a file named "features/non-existence.feature" with: """ Feature: Remove Scenario: Remove Given an empty directory named "foo" When I remove the directory "foo" Then the directory "foo" should not exist """ When I run `cucumber` Then the features should all pass Scenario: Remove an non-existing directory Given a file named "features/non-existence.feature" with: """ Feature: Remove Scenario: Remove When I remove the directory "foo" Then the directory "foo" should not exist """ When I run `cucumber` Then the features should not pass Scenario: Force remove an non-existing directory Given a file named "features/non-existence.feature" with: """ Feature: Remove Scenario: Remove When I remove the directory "foo" with full force Then the directory "foo" should not exist """ When I run `cucumber` Then the features should all pass
Version data entries
20 entries across 20 versions & 2 rubygems