From f25ce7fefa797f01cc190c278832b23eb7e923e7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Sun, 21 Jun 2015 15:01:02 +0200 Subject: [PATCH] Revert "Move matchRender to test helpers file" This reverts commit 32d91d616e99cd05b59644e292b29be415d5054f. --- hugolib/helpers_for_test.go | 13 ------------- hugolib/site_test.go | 12 ++++++++++++ 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/hugolib/helpers_for_test.go b/hugolib/helpers_for_test.go index f7b1dc5f..7c41376a 100644 --- a/hugolib/helpers_for_test.go +++ b/hugolib/helpers_for_test.go @@ -1,7 +1,6 @@ package hugolib import ( - "bytes" "testing" "github.com/spf13/afero" @@ -79,15 +78,3 @@ func pageMust(p *Page, err error) *Page { } return p } - -func matchRender(t *testing.T, s *Site, p *Page, tmplName string, expected string) { - content := new(bytes.Buffer) - err := s.renderThing(p, tmplName, NopCloser(content)) - if err != nil { - t.Fatalf("Unable to render template.") - } - - if string(content.Bytes()) != expected { - t.Fatalf("Content did not match expected: %s. got: %s", expected, content) - } -} diff --git a/hugolib/site_test.go b/hugolib/site_test.go index e4f9fca0..5b1bb0df 100644 --- a/hugolib/site_test.go +++ b/hugolib/site_test.go @@ -79,6 +79,18 @@ func NopCloser(w io.Writer) io.WriteCloser { return nopCloser{w} } +func matchRender(t *testing.T, s *Site, p *Page, tmplName string, expected string) { + content := new(bytes.Buffer) + err := s.renderThing(p, tmplName, NopCloser(content)) + if err != nil { + t.Fatalf("Unable to render template.") + } + + if string(content.Bytes()) != expected { + t.Fatalf("Content did not match expected: %s. got: %s", expected, content) + } +} + func TestRenderThing(t *testing.T) { tests := []struct { content string -- 2.30.2