Add a test for searching by token

This commit is contained in:
John Cowen 2018-06-14 13:15:56 +01:00
parent bf30902812
commit 143e1b7b37

View file

@ -1,5 +1,8 @@
@setupApplicationTest
Feature: Acl Filter
Feature: dc / components /acl filter: Acl Filter
In order to find the acl token I'm looking for easier
As a user
I should be able to filter by type and freetext search tokens by name and token
Scenario: Filtering [Model]
Given 1 datacenter model with the value "dc-1"
And 2 [Model] models
@ -27,6 +30,11 @@ Feature: Acl Filter
s: Anonymous Token
---
And I see 1 [Model] model with the name "Anonymous Token"
Then I type with yaml
---
s: secret
---
And I see 1 [Model] model with the name "Master Token"
Where:
-------------------------------------------------