summaryrefslogtreecommitdiffstats
path: root/hugolib/page_taxonomy_test.go
diff options
context:
space:
mode:
authorJoel Scoble <joel.scoble@outlook.com>2014-09-09 15:58:02 -0500
committerspf13 <steve.francia@gmail.com>2014-09-11 17:03:31 -0400
commit4e9b04086afcb51103f339c4ad97136a7a10d6a6 (patch)
tree48aa0ec1e56c2ac0c46e63a61d05052a132fceaa /hugolib/page_taxonomy_test.go
parent012a473e27aee4a8bd6e7e7923d697a6c6b4b82c (diff)
fix tags not being in lowercase, #491
Diffstat (limited to 'hugolib/page_taxonomy_test.go')
-rw-r--r--hugolib/page_taxonomy_test.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/hugolib/page_taxonomy_test.go b/hugolib/page_taxonomy_test.go
index f372a595a..1b34015d3 100644
--- a/hugolib/page_taxonomy_test.go
+++ b/hugolib/page_taxonomy_test.go
@@ -6,7 +6,7 @@ import (
)
var PAGE_YAML_WITH_TAXONOMIES_A = `---
-tags: ['a', 'b', 'c']
+tags: ['a', 'B', 'c']
categories: 'd'
---
YAML frontmatter with tags and categories taxonomy.`
@@ -14,20 +14,20 @@ YAML frontmatter with tags and categories taxonomy.`
var PAGE_YAML_WITH_TAXONOMIES_B = `---
tags:
- "a"
- - "b"
+ - "B"
- "c"
categories: 'd'
---
YAML frontmatter with tags and categories taxonomy.`
var PAGE_YAML_WITH_TAXONOMIES_C = `---
-tags: 'e'
+tags: 'E'
categories: 'd'
---
YAML frontmatter with tags and categories taxonomy.`
var PAGE_JSON_WITH_TAXONOMIES = `{
- "categories": "d",
+ "categories": "D",
"tags": [
"a",
"b",
@@ -37,7 +37,7 @@ var PAGE_JSON_WITH_TAXONOMIES = `{
JSON Front Matter with tags and categories`
var PAGE_TOML_WITH_TAXONOMIES = `+++
-tags = [ "a", "b", "c" ]
+tags = [ "a", "B", "c" ]
categories = "d"
+++
TOML Front Matter with tags and categories`