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