hugolib: Adjust test - hugo - [fork] hugo port for 9front
(HTM) git clone git@git.drkhsh.at/hugo.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
(DIR) commit 25ddbb09fea7794edbbafa2ffce4e361cdc9bacf
(DIR) parent e691c48a5a9b4db5aa5383de6b83352fc18cc633
(HTM) Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date: Sun, 23 Dec 2018 19:42:51 +0100
hugolib: Adjust test
See #5544
Diffstat:
M hugolib/resource_chain_test.go | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/hugolib/resource_chain_test.go b/hugolib/resource_chain_test.go
@@ -343,7 +343,7 @@ Publish 2: {{ $cssPublish2.Permalink }}
b.WithTemplates("home.html", `
{{ $toml := "slogan = \"Hugo Rocks!\"" | resources.FromString "slogan.toml" | transform.Unmarshal }}
{{ $csv1 := "\"Hugo Rocks\",\"Hugo is Fast!\"" | resources.FromString "slogans.csv" | transform.Unmarshal }}
-{{ $csv2 := "a;b;c" | resources.FromString "abc.csv" | transform.Unmarshal (dict "csvComma" ";") }}
+{{ $csv2 := "a;b;c" | transform.Unmarshal (dict "comma" ";") }}
Slogan: {{ $toml.slogan }}
CSV1: {{ $csv1 }} {{ len (index $csv1 0) }}
@@ -354,6 +354,7 @@ CSV2: {{ $csv2 }}
b.AssertFileContent("public/index.html",
`Slogan: Hugo Rocks!`,
`[[Hugo Rocks Hugo is Fast!]] 2`,
+ `CSV2: [[a b c]]`,
)
}},