From 8d42a7942ad2cc3ecff2ad90502c7e9e87da5d52 Mon Sep 17 00:00:00 2001 From: Bjørn Erik Pedersen Date: Thu, 1 Feb 2024 16:35:41 +0100 Subject: Improve nilpointer error message --- hugolib/paginator_test.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'hugolib/paginator_test.go') diff --git a/hugolib/paginator_test.go b/hugolib/paginator_test.go index 2ce07805e..fb592bed1 100644 --- a/hugolib/paginator_test.go +++ b/hugolib/paginator_test.go @@ -170,3 +170,15 @@ Paginator: {{ .Paginator }} b.Assert(err, qt.IsNotNil) b.Assert(err.Error(), qt.Contains, `error calling Paginator: pagination not supported for this page: kind: "page"`) } + +func TestNilPointerErrorMessage(t *testing.T) { + files := ` +-- hugo.toml -- +-- content/p1.md -- +-- layouts/_default/single.html -- +Home Filename: {{ site.Home.File.Filename }} +` + b, err := TestE(t, files) + b.Assert(err, qt.IsNotNil) + b.Assert(err.Error(), qt.Contains, `_default/single.html:1:22: executing "_default/single.html" – File is nil; wrap it in if or with: {{ with site.Home.File }}{{ .Filename }}{{ end }}`) +} -- cgit v1.2.3