summaryrefslogtreecommitdiffstats
path: root/hugolib/siteJSONEncode_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugolib/siteJSONEncode_test.go')
-rw-r--r--hugolib/siteJSONEncode_test.go15
1 files changed, 13 insertions, 2 deletions
diff --git a/hugolib/siteJSONEncode_test.go b/hugolib/siteJSONEncode_test.go
index 170db4b4d..1218bfd34 100644
--- a/hugolib/siteJSONEncode_test.go
+++ b/hugolib/siteJSONEncode_test.go
@@ -16,6 +16,11 @@ package hugolib
import (
"encoding/json"
"testing"
+
+ "path/filepath"
+
+ "github.com/spf13/hugo/deps"
+ "github.com/spf13/hugo/hugofs"
)
// Issue #1123
@@ -23,9 +28,15 @@ import (
// May be smart to run with: -timeout 4000ms
func TestEncodePage(t *testing.T) {
+ fs := hugofs.NewMem()
+
// borrowed from menu_test.go
- s := createTestSite(menuPageSources)
- testSiteSetup(s, t)
+ for _, src := range menuPageSources {
+ writeSource(t, fs, filepath.Join("content", src.Name), string(src.Content))
+
+ }
+
+ s := buildSingleSite(t, deps.DepsCfg{Fs: fs}, BuildCfg{})
_, err := json.Marshal(s)
check(t, err)