summaryrefslogtreecommitdiff
path: root/caddytest
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2020-10-02 15:23:52 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2020-10-02 15:23:52 -0600
commit0fc47e8357af5ccd6f800819722229b1a279e5b5 (patch)
treec3b8e2fd7b9232a81ae05e545b32309d4b048a4b /caddytest
parent25d2b4bf2927bf69ddce582d33339ef7d13cb6bf (diff)
map: Apply default if mapped output is nil
Diffstat (limited to 'caddytest')
-rw-r--r--caddytest/integration/map_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/caddytest/integration/map_test.go b/caddytest/integration/map_test.go
index dc077ee..aa535ec 100644
--- a/caddytest/integration/map_test.go
+++ b/caddytest/integration/map_test.go
@@ -18,7 +18,7 @@ func TestMap(t *testing.T) {
localhost:9080 {
map {http.request.method} {dest-1} {dest-2} {
- default unknown
+ default unknown1 unknown2
~G.T get-called
POST post-called foobar
}
@@ -30,7 +30,7 @@ func TestMap(t *testing.T) {
`, "caddyfile")
// act and assert
- tester.AssertGetResponse("http://localhost:9080/version", 200, "hello from localhost get-called ")
+ tester.AssertGetResponse("http://localhost:9080/version", 200, "hello from localhost get-called unknown2")
tester.AssertPostResponseBody("http://localhost:9080/version", []string{}, bytes.NewBuffer([]byte{}), 200, "hello from localhost post-called foobar")
}