summaryrefslogtreecommitdiffstats
path: root/hugolib/site_output_test.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-05-17 19:57:44 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-05-17 22:14:31 +0300
commite682fcc62233b47cf5bdcaf598ac0657ef089471 (patch)
tree145c429571c4d0e3976b9b63ac1809349ce1df0c /hugolib/site_output_test.go
parentb6ea492b7a6325d04d44eeb00a990a3a0e29e0c0 (diff)
hugolib: Fix RSSLink vs RSS Output Format
Fixes #3450
Diffstat (limited to 'hugolib/site_output_test.go')
-rw-r--r--hugolib/site_output_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/hugolib/site_output_test.go b/hugolib/site_output_test.go
index d57173630..824156e0b 100644
--- a/hugolib/site_output_test.go
+++ b/hugolib/site_output_test.go
@@ -284,4 +284,9 @@ baseName = "feed"
th.assertFileContent("public/feed.xml", "Recent content on")
+ s := h.Sites[0]
+
+ //Issue #3450
+ require.Equal(t, "http://example.com/blog/feed.xml", s.Info.RSSLink)
+
}