Feature: Local deploy In order to manage docroot As a developer using Cucumber I want to use the deploy steps to deploy to local @announce @no-clobber Scenario: Local deploy sample project 1 develop Given I cd to "sample-docroot" Then I run `docman deploy local sample_project1 branch develop` Then the exit status should be 0 Then the following directories should exist: | master | | master/docroot | | master/docroot/sites | | master/hooks | | master/profiles | | master/profiles/sample_profile | | master/projects/sample_project1 | | master/projects/sample_project2 | @announce @no-clobber Scenario: Local deploy sample project 2 master Given I cd to "sample-docroot" Then I run `docman deploy local sample_project2 branch master` Then the exit status should be 0 Then the following directories should exist: | master | | master/docroot | | master/docroot/sites | | master/hooks | | master/profiles | | master/profiles/sample_profile | | master/projects/sample_project1 | | master/projects/sample_project2 |