-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathapplications.feature
More file actions
29 lines (24 loc) · 891 Bytes
/
applications.feature
File metadata and controls
29 lines (24 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Feature: Applications
In order to determine what I can work with
As a User
I want to be able to list the applications that live in my accounts
Background:
Given I'm an Engine Yard user
And ey-core is configured with my cloud token
And I have the following accounts:
| Account Name |
| one |
| two |
| three |
And each of my accounts has several applications
Scenario: Listing all of my applications
When I run `ey-core applications`
Then I see the name and ID for all of my applications
Scenario Outline: Listing applications for a specific account
When I run `ey-core applications <Account Flag> one`
Then I see the applications in the one account
But I do not see applications from other accounts
Examples:
| Account Flag |
| -a |
| --account |