summaryrefslogtreecommitdiffstats
path: root/hugolib/site_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugolib/site_test.go')
-rw-r--r--hugolib/site_test.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/hugolib/site_test.go b/hugolib/site_test.go
index a3ec66880..5f66b153c 100644
--- a/hugolib/site_test.go
+++ b/hugolib/site_test.go
@@ -52,24 +52,6 @@ func pageMust(p *Page, err error) *Page {
return p
}
-func TestDegenerateRenderThingMissingTemplate(t *testing.T) {
- t.Parallel()
- cfg, fs := newTestCfg()
-
- writeSource(t, fs, filepath.Join("content", "a", "file.md"), pageSimpleTitle)
-
- s := buildSingleSite(t, deps.DepsCfg{Fs: fs, Cfg: cfg}, BuildCfg{})
-
- require.Len(t, s.RegularPages, 1)
-
- p := s.RegularPages[0]
-
- err := s.renderThing(p, "foobar", nil)
- if err == nil {
- t.Errorf("Expected err to be returned when missing the template.")
- }
-}
-
func TestRenderWithInvalidTemplate(t *testing.T) {
t.Parallel()
cfg, fs := newTestCfg()