From 6d21559fb55cda39c7b92bb61fd8e65a84465fe5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 3 Mar 2021 20:15:13 +0100 Subject: [PATCH] Add a debug helper --- hugolib/testhelpers_test.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/hugolib/testhelpers_test.go b/hugolib/testhelpers_test.go index 59ae84583..09988f972 100644 --- a/hugolib/testhelpers_test.go +++ b/hugolib/testhelpers_test.go @@ -992,6 +992,18 @@ func pagesToString(pages ...page.Page) string { return strings.Join(paths, "|") } +func dumpPagesLinks(pages ...page.Page) { + var links []string + for _, p := range pages { + links = append(links, p.RelPermalink()) + } + sort.Strings(links) + + for _, link := range links { + fmt.Println(link) + } +} + func dumpPages(pages ...page.Page) { fmt.Println("---------") for _, p := range pages {