From 71832328f86747eac8b97fabdbdc6b74aef7a9f8 Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Thu, 22 Dec 2022 08:39:42 -0800 Subject: [PATCH] Annotate test assertions --- hugolib/integration_test.go | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/hugolib/integration_test.go b/hugolib/integration_test.go index de8a6179b..417fe2129 100644 --- a/hugolib/integration_test.go +++ b/hugolib/integration_test.go @@ -65,20 +65,25 @@ tags: ['T1'] ) b.Build() - b.AssertFileContent("public/en/posts/index.html", - "", - ) - b.AssertFileContent("public/en/posts/p1/index.html", - "", - ) - b.AssertFileContent("public/en/tags/index.html", - "", - ) - b.AssertFileContent("public/en/tags/t1/index.html", - "", - ) + // Kind home b.AssertFileContent("public/en/index.html", "", ) + // Kind section + b.AssertFileContent("public/en/posts/index.html", + "", + ) + // Kind page + b.AssertFileContent("public/en/posts/p1/index.html", + "", + ) + // Kind taxonomy + b.AssertFileContent("public/en/tags/index.html", + "", + ) + // Kind term + b.AssertFileContent("public/en/tags/t1/index.html", + "", + ) }