Sha256: c61a1496964e7026d9c6bbcf888b4aa58caa3ab9081408cfbeba6f72220235b6
Contents?: true
Size: 1.38 KB
Versions: 11
Compression:
Stored size: 1.38 KB
Contents
Feature: Create Directory As a user of aruba I want to create directories Background: Given I use a fixture named "cli-app" Scenario: Non-existing directory Given a file named "features/create_directory.feature" with: """ Feature: Create directory Scenario: Create directory Given a directory named "dir1" Given the directory "dir2" Given the directory named "dir3" Then a directory named "dir1" should exist And a directory named "dir2" should exist And a directory named "dir3" should exist """ When I run `cucumber` Then the features should all pass Scenario: Existing directory It doesn't matter if a directory already exist. Given a file named "features/create_directory.feature" with: """ Feature: Create directory Scenario: Create directory Given a directory named "dir1" And a directory named "dir1" """ When I run `cucumber` Then the features should all pass Scenario: Change mode a long with creation of directory Given a file named "features/create_directory.feature" with: """ Feature: Create directory Scenario: Create directory Given a directory named "dir1" with mode "0644" Then the directory named "dir1" should have permissions "0644" """ When I run `cucumber` Then the features should all pass
Version data entries
11 entries across 11 versions & 1 rubygems