summaryrefslogtreecommitdiffstats
path: root/hugolib/config_test.go
diff options
context:
space:
mode:
author卜木 <xqbumu@gmail.com>2021-05-31 02:25:37 +0800
committerGitHub <noreply@github.com>2021-05-30 20:25:37 +0200
commitee733085b7f5d3f2aef1667901ab6ecb8041d699 (patch)
treefc0d309a441c40bd6b33b9ed015fbd06f7b1b25a /hugolib/config_test.go
parent01758f99b915f34fe7ca4621e4d1ee09efe385b1 (diff)
config: Fix env split to allow = character in values
Fixes #8589
Diffstat (limited to 'hugolib/config_test.go')
-rw-r--r--hugolib/config_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/hugolib/config_test.go b/hugolib/config_test.go
index 75f5b9786..9e01212c7 100644
--- a/hugolib/config_test.go
+++ b/hugolib/config_test.go
@@ -528,6 +528,8 @@ theme_param="themevalue2"
// Issue #8346
"HUGOxPARAMSxMYTHEME_SECTIONxTHEME_PARAM", "themevalue_changed",
"HUGOxPARAMSxMYTHEME_SECTION2xTHEME_PARAM", "themevalue2_changed",
+ "HUGO_PARAMS_EMPTY", ``,
+ "HUGO_PARAMS_HTML", `<a target="_blank" />`,
)
b.Build(BuildCfg{})
@@ -547,4 +549,6 @@ theme_param="themevalue2"
c.Assert(cfg.Get("params.api_config.another_key"), qt.Equals, "default another_key")
c.Assert(cfg.Get("params.mytheme_section.theme_param"), qt.Equals, "themevalue_changed")
c.Assert(cfg.Get("params.mytheme_section2.theme_param"), qt.Equals, "themevalue2_changed")
+ c.Assert(cfg.Get("params.empty"), qt.Equals, ``)
+ c.Assert(cfg.Get("params.html"), qt.Equals, `<a target="_blank" />`)
}