summaryrefslogtreecommitdiff
path: root/replacer_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'replacer_test.go')
-rw-r--r--replacer_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/replacer_test.go b/replacer_test.go
index 09b41c2..41ada7d 100644
--- a/replacer_test.go
+++ b/replacer_test.go
@@ -372,6 +372,7 @@ func TestReplacerNew(t *testing.T) {
} else {
// test if default global replacements are added as the first provider
hostname, _ := os.Hostname()
+ wd, _ := os.Getwd()
os.Setenv("CADDY_REPLACER_TEST", "envtest")
defer os.Setenv("CADDY_REPLACER_TEST", "")
@@ -396,6 +397,10 @@ func TestReplacerNew(t *testing.T) {
value: runtime.GOARCH,
},
{
+ variable: "system.wd",
+ value: wd,
+ },
+ {
variable: "env.CADDY_REPLACER_TEST",
value: "envtest",
},