mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
16 lines
509 B
Gherkin
16 lines
509 B
Gherkin
|
Feature: The path to the configuration can be changed, removing the need to
|
||
|
follow Ruby/Rails conventions
|
||
|
|
||
|
Background:
|
||
|
Given a test app with the default configuration
|
||
|
And servers with the roles app and web
|
||
|
|
||
|
Scenario: Deploying with configuration in default location
|
||
|
When I run "cap test"
|
||
|
Then the task is successful
|
||
|
|
||
|
Scenario: Deploying with configuration in a custom location
|
||
|
But the configuration is in a custom location
|
||
|
When I run "cap test"
|
||
|
Then the task is successful
|