summaryrefslogtreecommitdiffstats
path: root/hugolib/rss_test.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-03-24 14:20:00 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-03-24 14:20:00 +0100
commit3bbfd99176cc08afbf5926ed06007b196b1332ad (patch)
tree438f3ab56f5cf0c88fd232173b683ba4b9854e65 /hugolib/rss_test.go
parentb8bf01cdc6988c563d68ccf33ac8b4bd08274435 (diff)
hugolib: Apply Golint rules to rss_test.go
Diffstat (limited to 'hugolib/rss_test.go')
-rw-r--r--hugolib/rss_test.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/hugolib/rss_test.go b/hugolib/rss_test.go
index a6a4f82e5..b8a16665f 100644
--- a/hugolib/rss_test.go
+++ b/hugolib/rss_test.go
@@ -24,7 +24,7 @@ import (
"github.com/spf13/viper"
)
-const RSS_TEMPLATE = `<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
+const rssTemplate = `<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ .Title }} on {{ .Site.Title }} </title>
<link>{{ .Permalink }}</link>
@@ -49,16 +49,16 @@ func TestRSSOutput(t *testing.T) {
viper.Reset()
defer viper.Reset()
- rssUri := "customrss.xml"
+ rssURI := "customrss.xml"
viper.Set("baseurl", "http://auth/bub/")
- viper.Set("RSSUri", rssUri)
+ viper.Set("RSSUri", rssURI)
hugofs.DestinationFS = new(afero.MemMapFs)
s := &Site{
Source: &source.InMemorySource{ByteSource: WEIGHTED_SOURCES},
}
s.initializeSiteInfo()
- s.prepTemplates("rss.xml", RSS_TEMPLATE)
+ s.prepTemplates("rss.xml", rssTemplate)
if err := s.CreatePages(); err != nil {
t.Fatalf("Unable to create pages: %s", err)
@@ -72,10 +72,10 @@ func TestRSSOutput(t *testing.T) {
t.Fatalf("Unable to RenderHomePage: %s", err)
}
- file, err := hugofs.DestinationFS.Open(rssUri)
+ file, err := hugofs.DestinationFS.Open(rssURI)
if err != nil {
- t.Fatalf("Unable to locate: %s", rssUri)
+ t.Fatalf("Unable to locate: %s", rssURI)
}
rss := helpers.ReaderToBytes(file)