23 lines
853 B
Gherkin
23 lines
853 B
Gherkin
@setupApplicationTest
|
|
Feature: dc / kvs / trailing-slash
|
|
Scenario: I have 10 folders and I visit without a trailing slash
|
|
Given 1 datacenter model with the value "datacenter"
|
|
And 10 kv models from yaml
|
|
When I visit the kvs page for yaml
|
|
---
|
|
dc: datacenter
|
|
kv: foo/bar
|
|
---
|
|
Then the url should be /datacenter/kv/foo/bar/
|
|
And a GET request was made to "/v1/kv/foo/bar/?keys&dc=datacenter&separator=%2F&ns=@namespace"
|
|
Scenario: I have 10 folders and I visit with a trailing slash
|
|
Given 1 datacenter model with the value "datacenter"
|
|
And 10 kv models from yaml
|
|
When I visit the kvs page for yaml
|
|
---
|
|
dc: datacenter
|
|
kv: foo/bar/
|
|
---
|
|
Then the url should be /datacenter/kv/foo/bar/
|
|
And a GET request was made to "/v1/kv/foo/bar/?keys&dc=datacenter&separator=%2F&ns=@namespace"
|