From: Joe Mooring Date: Thu, 22 Dec 2022 16:39:42 +0000 (-0800) Subject: Annotate test assertions X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=71832328f86747eac8b97fabdbdc6b74aef7a9f8;p=brevno-suite%2Fhugo Annotate test assertions --- 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() + // 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", "", ) - b.AssertFileContent("public/en/index.html", - "", - ) }