From: Bjørn Erik Pedersen Date: Fri, 28 Oct 2016 12:46:33 +0000 (+0200) Subject: Fix RSS Title regression X-Git-Tag: v0.18~154 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6a3d1037;p=brevno-suite%2Fhugo Fix RSS Title regression And add tests to make sure it doesn't happen again. Fixes #2645 --- diff --git a/hugolib/rss_test.go b/hugolib/rss_test.go index 2bf849f9..966b00af 100644 --- a/hugolib/rss_test.go +++ b/hugolib/rss_test.go @@ -20,44 +20,27 @@ import ( "github.com/spf13/viper" ) -const rssTemplate = ` - - {{ .Title }} on {{ .Site.Title }} - {{ .Permalink }} - en-us - Steve Francia - Francia; all rights reserved. - {{ .Date }} - {{ range .Data.Pages }} - - {{ .Title }} - {{ .Permalink }} - {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 MST" }} - Steve Francia - {{ .Permalink }} - {{ .Content | html }} - - {{ end }} - -` - func TestRSSOutput(t *testing.T) { testCommonResetState() - rssURI := "public/customrss.xml" + rssURI := "customrss.xml" viper.Set("baseURL", "http://auth/bub/") viper.Set("rssURI", rssURI) + viper.Set("title", "RSSTest") for _, s := range weightedSources { - writeSource(t, filepath.Join("content", s.Name), string(s.Content)) + writeSource(t, filepath.Join("content", "sect", s.Name), string(s.Content)) } - writeSource(t, filepath.Join("layouts", "rss.xml"), rssTemplate) - if err := buildAndRenderSite(newSiteDefaultLang()); err != nil { t.Fatalf("Failed to build site: %s", err) } - assertFileContent(t, filepath.Join("public", rssURI), true, "