github.com/sl1pm4t/consul@v1.4.5-0.20190325224627-74c31c540f9c/ui-v2/tests/acceptance/dc/kvs/trailing-slash.feature (about) 1 @setupApplicationTest 2 Feature: dc / kvs / trailing slash 3 Scenario: I have 10 folders 4 Given 1 datacenter model with the value "datacenter" 5 And 10 kv models from yaml 6 When I visit the kvs page for yaml 7 --- 8 dc: datacenter 9 kv: foo/bar 10 --- 11 Then the url should be /datacenter/kv/foo/bar/ 12 And the last GET request was made to "/v1/kv/foo/bar/?keys&dc=datacenter&separator=%2F" 13 When I visit the kvs page for yaml 14 --- 15 dc: datacenter 16 kv: foo/bar/ 17 --- 18 Then the url should be /datacenter/kv/foo/bar/ 19 And the last GET request was made to "/v1/kv/foo/bar/?keys&dc=datacenter&separator=%2F"