To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorCreate new File
As a user of aruba
I want to create files
- Background
-
- Given
- I use a fixture named "cli-app"
- Scenarios
-
- Create empty file
-
- Given
-
a file named "features/create_file.feature" with:
Feature: Create file Scenario: Create file Given an empty file named "file1.txt" Then a file named "file1.txt" should exist
- When
-
I run
cucumber
- Then
- the features should all pass
- Create file with content
-
- Given
-
a file named "features/create_file.feature" with:
Feature: Create file Scenario: Create file Given a file named "file1.txt" with: """ Hello World """ Then the file named "file1.txt" should contain: """ Hello World """
- When
-
I run
cucumber
- Then
- the features should all pass
- Change mode a long with creation of file
-
- Given
-
a file named "features/create_file.feature" with:
Feature: Create directory Scenario: Create directory Given a file named "file1.txt" with mode "0644" and with: """ Hello World """ Then the file named "file1.txt" should have permissions "0644" And the file named "file1.txt" should contain: """ Hello World """
- When
-
I run
cucumber
- Then
- the features should all pass
Last published over 7 years ago by Max Meyer.