summaryrefslogtreecommitdiff
path: root/admin_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'admin_test.go')
-rw-r--r--admin_test.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/admin_test.go b/admin_test.go
index e8563b7..cfb4ab7 100644
--- a/admin_test.go
+++ b/admin_test.go
@@ -77,6 +77,12 @@ func TestUnsyncedConfigAccess(t *testing.T) {
payload: `"d"`,
expect: `{"foo": "jet", "bar": {"aa": "bb"}, "list": ["a", "b", "c", "d"]}`,
},
+ {
+ method: "POST",
+ path: "/list/...",
+ payload: `["e", "f", "g"]`,
+ expect: `{"foo": "jet", "bar": {"aa": "bb"}, "list": ["a", "b", "c", "d", "e", "f", "g"]}`,
+ },
} {
err := unsyncedConfigAccess(tc.method, rawConfigKey+tc.path, []byte(tc.payload), nil)