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:
beeae6a
)
Silence chatty JSON test
author
bep
<bjorn.erik.pedersen@gmail.com>
Sat, 6 Jun 2015 18:57:11 +0000
(20:57 +0200)
committer
bep
<bjorn.erik.pedersen@gmail.com>
Sat, 6 Jun 2015 18:57:13 +0000
(20:57 +0200)
hugolib/siteJSONEncode_test.go
patch
|
blob
|
history
diff --git
a/hugolib/siteJSONEncode_test.go
b/hugolib/siteJSONEncode_test.go
index 7c4bb48e3df69c086f8070983177a873b58b562c..c040eb01b983ea75d269b8ec68f68b974809e006 100644
(file)
--- a/
hugolib/siteJSONEncode_test.go
+++ b/
hugolib/siteJSONEncode_test.go
@@
-2,7
+2,6
@@
package hugolib
import (
"encoding/json"
- "fmt"
"testing"
)
@@
-15,14
+14,11
@@
func TestEncodePage(t *testing.T) {
s := createTestSite(MENU_PAGE_SOURCES)
testSiteSetup(s, t)
-
j
, err := json.Marshal(s)
+
_
, err := json.Marshal(s)
check(t, err)
- fmt.Println("Site as JSON", string(j))
-
p, err :
= json.Marshal(s.Pages[0])
+
_, err
= json.Marshal(s.Pages[0])
check(t, err)
- fmt.Println("Page as JSON", string(p))
-
}
func check(t *testing.T, err error) {