shithub: hugo

Download patch

ref: bceda1b288f0ad6282916826b596cb1fe19983bb
parent: 4dae52af680e6ff2c8cdeb4ce1f219330b27001c
author: Bjørn Erik Pedersen <[email protected]>
date: Tue Mar 26 06:28:02 EDT 2019

hugolib: Add a test for home page with no title

See #5784

--- a/hugolib/page_test.go
+++ b/hugolib/page_test.go
@@ -1174,6 +1174,20 @@
 		WithTemplatesAdded("index.html", "{{ .File.Filename }}{{ with .File }}{{ .Dir }}{{ end }}").Build(BuildCfg{})
 }
 
+func TestHomePageWithNoTitle(t *testing.T) {
+	b := newTestSitesBuilder(t).WithSimpleConfigFile().
+		WithTemplatesAdded("index.html", "Title|{{ with .Title }}{{ . }}{{ end }}|")
+	b.WithContent("_index.md", `---
+description: "No title for you!"
+---
+
+Content.
+`)
+
+	b.Build(BuildCfg{})
+	b.AssertFileContent("public/index.html", "Title||")
+}
+
 func TestShouldBuild(t *testing.T) {
 	t.Parallel()
 	var past = time.Date(2009, 11, 17, 20, 34, 58, 651387237, time.UTC)