lib/deploy-context/deploy/cucumber.rb in deploy-context-2.1.32 vs lib/deploy-context/deploy/cucumber.rb in deploy-context-2.1.32.15.g7b29619
- old
+ new
@@ -1,9 +1,11 @@
module Context
- module CucumberDeployerHelper
- def cucumber_test(context)
- git_build(context)
- puts "Working in folder #{Dir.pwd}\nAnd context #{context.context_name} is created in folder #{context.context_folder} at version #{context.version}"
- cucumber
+ module DeployHelpers
+ module CucumberHelper
+ def cucumber_test(context)
+ context.git_build(context)
+ context.log "Working in folder #{Dir.pwd}\nAnd context #{context.context_name} is created in folder #{context.context_folder} at version #{context.version}"
+ context.cucumber(context)
+ end
end
end
end