Alias sh' as ` condition keyword

This commit is contained in:
Thibault Jouan
2014-03-08 21:10:21 +00:00
parent 475b019dd7
commit 6f563803df
3 changed files with 30 additions and 0 deletions

View File

@@ -28,3 +28,31 @@ Feature: `` condition keyword
"""
When I successfully execute the recipe
Then the output must not contain "evaluated"
Scenario: `sh' alias, succeeds when remote executable is available
Given a recipe with:
"""
target 'some_host.test'
task :testing_remote_command do
condition { sh 'false' }
echo 'evaluated'
end
"""
When I successfully execute the recipe
Then the output must not contain "evaluated"
Scenario: succeeds when remote executable is available
Given a recipe with:
"""
target 'some_host.test'
task :testing_remote_command do
condition { sh 'false' }
echo 'evaluated'
end
"""
When I successfully execute the recipe
Then the output must not contain "evaluated"