projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e2aea65
)
transform: Don't use helpers.StringToReader
author
Cameron Moore
<moorereason@gmail.com>
Sat, 25 Jun 2016 23:02:07 +0000
(18:02 -0500)
committer
Cameron Moore
<moorereason@gmail.com>
Sat, 25 Jun 2016 23:02:07 +0000
(18:02 -0500)
transform/hugogeneratorinject_test.go
patch
|
blob
|
history
diff --git
a/transform/hugogeneratorinject_test.go
b/transform/hugogeneratorinject_test.go
index 3f8b26de7018fa637c8139fa8e1310cf607b9cb6..d37fea24e090d2abec4849827bd1b39766fd650c 100644
(file)
--- a/
transform/hugogeneratorinject_test.go
+++ b/
transform/hugogeneratorinject_test.go
@@
-15,9
+15,8
@@
package transform
import (
"bytes"
+ "strings"
"testing"
-
- "github.com/spf13/hugo/helpers"
)
func TestHugoGeneratorInject(t *testing.T) {
@@
-46,7
+45,7
@@
func TestHugoGeneratorInject(t *testing.T) {
{"</head>", "</head>"},
{"<head>", "<head>\n\tMETA"},
} {
- in :=
helpers.StringTo
Reader(this.in)
+ in :=
strings.New
Reader(this.in)
out := new(bytes.Buffer)
tr := NewChain(HugoGeneratorInject)