summaryrefslogtreecommitdiffstats
path: root/hugolib
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-04-12 10:26:10 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-04-12 10:26:10 +0200
commit4d425a86f5c03a5cca27d4e0f99d61acbb938d80 (patch)
tree40cfd3b526cc4cf32615ab66a500ff5ed45d4854 /hugolib
parent9e9a1f92baf151f8d840d6b5b963945d1410ce25 (diff)
Fix
Diffstat (limited to 'hugolib')
-rw-r--r--hugolib/shortcode_test.go31
1 files changed, 31 insertions, 0 deletions
diff --git a/hugolib/shortcode_test.go b/hugolib/shortcode_test.go
index f1603eeeb..52b21649e 100644
--- a/hugolib/shortcode_test.go
+++ b/hugolib/shortcode_test.go
@@ -895,6 +895,37 @@ C-%s`
}
+// https://github.com/gohugoio/hugo/issues/5833
+func TestShortcodeParentResources(t *testing.T) {
+ t.Parallel()
+
+ b := newTestSitesBuilder(t).WithSimpleConfigFile()
+ b.WithTemplatesAdded("shortcodes/c.html", `
+{{ range .Page.Parent.Resources }}
+* {{ .Name }}: {{ .RelPermalink }}
+{{ end }}
+`)
+
+ b.WithContent("b1/index.md", `
+---
+title: MyPage
+---
+
+{{< c >}}
+
+`,
+ "b1/logo.png", "PNG logo",
+ )
+
+ b.Build(BuildCfg{})
+
+ b.AssertFileContent("public/index.html",
+ "List Content: <p>Logo:P1:|P2:logo.png/PNG logo|:P1: P1:|P2:docs1p1/<p>C-s1p1</p>\n|",
+ "BP1:P1:|P2:docbp1/<p>C-bp1</p>",
+ )
+
+}
+
func TestShortcodePreserveOrder(t *testing.T) {
t.Parallel()
assert := require.New(t)