mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-20 21:31:32 +02:00
all: Refactor to nonglobal Viper, i18n etc.
This is a final rewrite that removes all the global state in Hugo, which also enables the use if `t.Parallel` in tests. Updates #2701 Fixes #3016
This commit is contained in:
@@ -19,26 +19,22 @@ import (
|
||||
"testing"
|
||||
|
||||
"github.com/spf13/hugo/deps"
|
||||
"github.com/spf13/hugo/hugofs"
|
||||
|
||||
"github.com/spf13/viper"
|
||||
)
|
||||
|
||||
func TestByCountOrderOfTaxonomies(t *testing.T) {
|
||||
defer testCommonResetState()
|
||||
|
||||
t.Parallel()
|
||||
taxonomies := make(map[string]string)
|
||||
|
||||
taxonomies["tag"] = "tags"
|
||||
taxonomies["category"] = "categories"
|
||||
|
||||
viper.Set("taxonomies", taxonomies)
|
||||
cfg, fs := newTestCfg()
|
||||
|
||||
fs := hugofs.NewMem()
|
||||
cfg.Set("taxonomies", taxonomies)
|
||||
|
||||
writeSource(t, fs, filepath.Join("content", "page.md"), pageYamlWithTaxonomiesA)
|
||||
|
||||
s := buildSingleSite(t, deps.DepsCfg{Fs: fs}, BuildCfg{})
|
||||
s := buildSingleSite(t, deps.DepsCfg{Fs: fs, Cfg: cfg}, BuildCfg{})
|
||||
|
||||
st := make([]string, 0)
|
||||
for _, t := range s.Taxonomies["tags"].ByCount() {
|
||||
|
Reference in New Issue
Block a user