16 lines
442 B
Gherkin
16 lines
442 B
Gherkin
|
@setupApplicationTest
|
||
|
Feature: settings / update: Update Settings
|
||
|
In order to authenticate with an ACL token
|
||
|
As a user
|
||
|
I need to be able to add my token via the UI
|
||
|
Scenario: I click Save without actually typing anything
|
||
|
Given 1 datacenter model with the value "datacenter"
|
||
|
When I visit the settings page
|
||
|
Then the url should be /settings
|
||
|
And I submit
|
||
|
Then I have settings like yaml
|
||
|
---
|
||
|
token: ''
|
||
|
---
|
||
|
|