summaryrefslogtreecommitdiffstats
path: root/hugolib/rss_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugolib/rss_test.go')
-rw-r--r--hugolib/rss_test.go12
1 files changed, 5 insertions, 7 deletions
diff --git a/hugolib/rss_test.go b/hugolib/rss_test.go
index 5da8ea0d6..ba2491c66 100644
--- a/hugolib/rss_test.go
+++ b/hugolib/rss_test.go
@@ -23,24 +23,22 @@ import (
func TestRSSOutput(t *testing.T) {
t.Parallel()
- var (
- cfg, fs = newTestCfg()
- th = newTestHelper(cfg, fs, t)
- )
rssLimit := len(weightedSources) - 1
- rssURI := "index.xml"
-
+ cfg, fs := newTestCfg()
cfg.Set("baseURL", "http://auth/bub/")
cfg.Set("title", "RSSTest")
cfg.Set("rssLimit", rssLimit)
+ th, configs := newTestHelperFromProvider(cfg, fs, t)
+
+ rssURI := "index.xml"
for _, src := range weightedSources {
writeSource(t, fs, filepath.Join("content", "sect", src[0]), src[1])
}
- buildSingleSite(t, deps.DepsCfg{Fs: fs, Cfg: cfg}, BuildCfg{})
+ buildSingleSite(t, deps.DepsCfg{Fs: fs, Configs: configs}, BuildCfg{})
// Home RSS
th.assertFileContent(filepath.Join("public", rssURI), "<?xml", "rss version", "RSSTest")