mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-24 21:56:05 +02:00
Renamed Indexes to Taxonomies. Old template and config parameters still work.
This commit is contained in:
18
hugolib/taxonomy_test.go
Normal file
18
hugolib/taxonomy_test.go
Normal file
@@ -0,0 +1,18 @@
|
||||
package hugolib
|
||||
|
||||
import (
|
||||
"strings"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestSitePossibleTaxonomies(t *testing.T) {
|
||||
site := new(Site)
|
||||
page, _ := ReadFrom(strings.NewReader(PAGE_YAML_WITH_TAXONOMIES_A), "path/to/page")
|
||||
site.Pages = append(site.Pages, page)
|
||||
taxonomies := site.possibleTaxonomies()
|
||||
if !compareStringSlice(taxonomies, []string{"tags", "categories"}) {
|
||||
if !compareStringSlice(taxonomies, []string{"categories", "tags"}) {
|
||||
t.Fatalf("possible taxonomies do not match [tags categories]. Got: %s", taxonomies)
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user