summaryrefslogtreecommitdiffstats
path: root/hugolib/content_render_hooks_test.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-12-02 13:23:25 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-12-03 13:12:58 +0100
commitd90e37e0c6e812f9913bf256c9c81aa05b7a08aa (patch)
tree7b1b14464eefec1188ca2eed53c64e4823453cc9 /hugolib/content_render_hooks_test.go
parent32471b57bde51c55a15dbf1db75d6e5f7232c347 (diff)
all: Format code with gofumpt
See https://github.com/mvdan/gofumpt
Diffstat (limited to 'hugolib/content_render_hooks_test.go')
-rw-r--r--hugolib/content_render_hooks_test.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/hugolib/content_render_hooks_test.go b/hugolib/content_render_hooks_test.go
index 13bfe216a..197581bb6 100644
--- a/hugolib/content_render_hooks_test.go
+++ b/hugolib/content_render_hooks_test.go
@@ -54,7 +54,6 @@ title: P1
b.Build(BuildCfg{})
b.AssertFileContent("public/p1/index.html", `Link First Link|PARTIAL1_EDITED PARTIAL2_EDITEDEND`)
-
}
func TestRenderHooks(t *testing.T) {
@@ -243,7 +242,6 @@ SHORT3|
// https://github.com/gohugoio/hugo/issues/7349
b.AssertFileContent("public/docs/p8/index.html", "Docs Level: 1")
-
}
func TestRenderHooksDeleteTemplate(t *testing.T) {
@@ -271,7 +269,6 @@ title: P1
b.Build(BuildCfg{})
b.AssertFileContent("public/p1/index.html", `<p><a href="https://www.google.com" title="Google's Homepage">First Link</a></p>`)
-
}
func TestRenderHookAddTemplate(t *testing.T) {
@@ -297,11 +294,9 @@ title: P1
b.Build(BuildCfg{})
b.AssertFileContent("public/p1/index.html", `<p>html-render-link</p>`)
-
}
func TestRenderHooksRSS(t *testing.T) {
-
b := newTestSitesBuilder(t)
b.WithTemplates("index.html", `
@@ -352,12 +347,10 @@ P3. [I'm an inline-style link](https://www.example.org)
P2: <p>P1. xml-link: https://www.bep.is|</p>
P3: <p>P3. xml-link: https://www.example.org|</p>
`)
-
}
// https://github.com/gohugoio/hugo/issues/6629
func TestRenderLinkWithMarkupInText(t *testing.T) {
-
b := newTestSitesBuilder(t)
b.WithConfigFile("toml", `
@@ -400,11 +393,9 @@ Image:
<p>Some regular <strong>markup</strong>.</p>
<p>html-image: image.jpg|Text: Hello<br> Goodbye|Plain: Hello GoodbyeEND</p>
`)
-
}
func TestRenderString(t *testing.T) {
-
b := newTestSitesBuilder(t)
b.WithTemplates("index.html", `
@@ -433,7 +424,6 @@ RSTART:<p><strong>Bold Block Markdown</strong></p>
RSTART:<em>italic org mode</em>:REND
RSTART:Hook Heading: 2:REND
`)
-
}
// https://github.com/gohugoio/hugo/issues/6882
@@ -460,5 +450,4 @@ func TestRenderStringOnListPage(t *testing.T) {
} {
b.AssertFileContent("public/"+filename, `<strong>Hello</strong>`)
}
-
}