mirror of
https://github.com/encounter/sceptre.git
synced 2026-03-30 11:37:13 -07:00
20 lines
785 B
Gherkin
20 lines
785 B
Gherkin
Feature: Launch stack
|
|
|
|
Scenario: launch a new stack
|
|
Given stack "1/A" does not exist
|
|
and the template for stack "1/A" is "valid_template.json"
|
|
When the user launches stack "1/A"
|
|
Then stack "1/A" exists in "CREATE_COMPLETE" state
|
|
|
|
Scenario: launch a stack that was newly created
|
|
Given stack "1/A" exists in "CREATE_COMPLETE" state
|
|
and the template for stack "1/A" is "updated_template.json"
|
|
When the user launches stack "1/A"
|
|
Then stack "1/A" exists in "UPDATE_COMPLETE" state
|
|
|
|
Scenario: launch a stack that has been previously updated
|
|
Given stack "1/A" exists in "UPDATE_COMPLETE" state
|
|
and the template for stack "1/A" is "valid_template.json"
|
|
When the user launches stack "1/A"
|
|
Then stack "1/A" exists in "UPDATE_COMPLETE" state
|