Unflatten features directory tree
This commit is contained in:
26
features/tests/file_eq.feature
Normal file
26
features/tests/file_eq.feature
Normal file
@@ -0,0 +1,26 @@
|
||||
@sshd
|
||||
Feature: `file_eq' condition keyword
|
||||
|
||||
Background:
|
||||
Given a recipe with:
|
||||
"""
|
||||
task :file_eq_test do
|
||||
condition { file_eq 'some_file', 'some content' }
|
||||
|
||||
echo 'evaluated'
|
||||
end
|
||||
"""
|
||||
|
||||
Scenario: succeeds when file content is expected content
|
||||
Given a remote file named "some_file" with "some content"
|
||||
When I successfully execute the recipe on remote target
|
||||
Then the output must contain "evaluated"
|
||||
|
||||
Scenario: fails when file content is not expected content
|
||||
Given a remote file named "some_file" with "some content padded"
|
||||
When I successfully execute the recipe on remote target
|
||||
Then the output must not contain "evaluated"
|
||||
|
||||
Scenario: fails when file does not exist
|
||||
When I successfully execute the recipe on remote target
|
||||
Then the output must not contain "evaluated"
|
Reference in New Issue
Block a user