diff options
author | Bjørn Erik Pedersen <[email protected]> | 2016-07-26 10:24:27 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2016-09-06 18:32:16 +0300 |
commit | 75dd596e6c38466fcb97a8b9dc9eb20fc2fb7fd6 (patch) | |
tree | 37f43d8af433033996fbae9d2b3914888144c60a /hugolib/sitemap_test.go | |
parent | 618948e4a83665f8355b01d8a3f7a7186e6bd3eb (diff) | |
download | hugo-75dd596e6c38466fcb97a8b9dc9eb20fc2fb7fd6.tar.gz hugo-75dd596e6c38466fcb97a8b9dc9eb20fc2fb7fd6.zip |
Introduce HugoSites type
And a Hugo global variable which contains the site under build.
This is really needed to get some level of control of the "multiple languages" in play.
There are still work related to this scattered around, but that will come.
With this commit, the multilingual feature is starting to work.
Diffstat (limited to 'hugolib/sitemap_test.go')
-rw-r--r-- | hugolib/sitemap_test.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hugolib/sitemap_test.go b/hugolib/sitemap_test.go index b9270ba58..c508fbc31 100644 --- a/hugolib/sitemap_test.go +++ b/hugolib/sitemap_test.go @@ -17,11 +17,12 @@ import ( "bytes" "testing" + "reflect" + "github.com/spf13/hugo/helpers" "github.com/spf13/hugo/hugofs" "github.com/spf13/hugo/source" "github.com/spf13/viper" - "reflect" ) const SITEMAP_TEMPLATE = `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> @@ -45,6 +46,7 @@ func TestSitemapOutput(t *testing.T) { s := &Site{ Source: &source.InMemorySource{ByteSource: weightedSources}, + Lang: newDefaultLanguage(), } s.initializeSiteInfo() |