Created
February 18, 2009 01:07
-
-
Save adamhjk/66117 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Feature: Manage Files # features/manage_files.feature | |
In order to save time | |
As a Developer | |
I want to manage files declaratively | |
Scenario: Create a file # features/manage_files.feature:6 | |
Given a validated node # features/steps/nodes.rb:1 | |
And it includes the recipe 'manage_files::create_a_file' # features/steps/nodes.rb:9 | |
When I run the chef-client # features/steps/run_client.rb:1 | |
Then the run should exit '0' # features/steps/run_client.rb:11 | |
And a file named 'create_a_file.txt' exists # features/steps/files.rb:1 | |
Scenario: Delete a file # features/manage_files.feature:13 | |
Given a validated node # features/steps/nodes.rb:1 | |
And it includes the recipe 'manage_files::delete_a_file' # features/steps/nodes.rb:9 | |
When I run the chef-client # features/steps/run_client.rb:1 | |
Then the run should exit '0' # features/steps/run_client.rb:11 | |
And a file named 'create_a_file.txt' does not exist # features/steps/files.rb:5 | |
Scenario: Delete a file that already does not exist # features/manage_files.feature:20 | |
Given a validated node # features/steps/nodes.rb:1 | |
And it includes the recipe 'manage_files::delete_a_file_that_already_exists' # features/steps/nodes.rb:9 | |
When I run the chef-client # features/steps/run_client.rb:1 | |
Then the run should exit '1' # features/steps/run_client.rb:11 | |
And stdout should have 'Cannot delete file' # features/steps/run_client.rb:15 | |
3 scenarios | |
15 steps passed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment