mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
17 lines
476 B
Gherkin
17 lines
476 B
Gherkin
|
Feature: Installation
|
||
|
|
||
|
Background:
|
||
|
Given a test app with the default configuration
|
||
|
|
||
|
Scenario: With default stages
|
||
|
When I run cap "install"
|
||
|
Then the deploy.rb file is created
|
||
|
And the default stage files are created
|
||
|
And the tasks folder is created
|
||
|
|
||
|
Scenario: With specified stages
|
||
|
When I run cap "install STAGES=qa,production"
|
||
|
Then the deploy.rb file is created
|
||
|
And the specified stage files are created
|
||
|
And the tasks folder is created
|