Sha256: 603422447e03be3f4d6c21da6e2e82b37cec7b9f57854cd36c93e89f2237121a
Contents?: true
Size: 1.85 KB
Versions: 6
Compression:
Stored size: 1.85 KB
Contents
Feature: Docroot management - Acquia In order to manage docroot As a developer using Cucumber I want to use the deploy steps to deploy to local @announce @no-clobber @build @acquia Scenario: Acquia build development Given I cd to "sample-docroot" Then I run `docman build acquia development` 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 | | master/docroot/profiles/sample_profile | Then the following files should exist: | master/docroot/CHANGELOG.txt | @announce @no-clobber @acquia @develop @deploy Scenario: Acquia deploy sample project 1 develop Given I cd to "sample-docroot" Then I run `docman deploy acquia 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 @acquia @deploy @master @sample_project2 Scenario: Acquia deploy sample project 2 master Given I cd to "sample-docroot" Then I run `docman deploy acquia 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 |
Version data entries
6 entries across 6 versions & 1 rubygems