-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@strimzi | ||
Feature: Feature for strimzi | ||
|
||
@minishift-only | ||
Scenario: User installs strimzi add-on | ||
When executing "minishift addons install ../../add-ons/strimzi" succeeds | ||
Then stdout should contain "Addon 'strimzi' installed" | ||
|
||
Scenario: User can uninstall strimzi add-on | ||
When executing "minishift addons uninstall strimzi" succeeds | ||
Then stdout should contain "Add-on 'strimzi' uninstalled" | ||
And stdout of command "minishift addons list" does not contain "strimzi" | ||
|
||
Scenario: Deleting Minishift | ||
When executing "minishift delete --force" succeeds | ||
Then Minishift should have state "Does Not Exist" |