hugolib: Fix some more Golint warnings
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 23 Mar 2016 09:10:28 +0000 (10:10 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 23 Mar 2016 09:10:28 +0000 (10:10 +0100)
hugolib/page_taxonomy_test.go
hugolib/shortcode_test.go
hugolib/sitemap.go
hugolib/taxonomy_test.go

index d463e5800c52f5c1624ac44f263cdb9f5610294d..30efd8c7f15cc5291422f9688eca32bd7031047d 100644 (file)
@@ -18,13 +18,13 @@ import (
        "testing"
 )
 
-var PAGE_YAML_WITH_TAXONOMIES_A = `---
+var pageYamlWithTaxonomiesA = `---
 tags: ['a', 'B', 'c']
 categories: 'd'
 ---
 YAML frontmatter with tags and categories taxonomy.`
 
-var PAGE_YAML_WITH_TAXONOMIES_B = `---
+var pageYamlWithTaxonomiesB = `---
 tags:
  - "a"
  - "B"
@@ -33,13 +33,13 @@ categories: 'd'
 ---
 YAML frontmatter with tags and categories taxonomy.`
 
-var PAGE_YAML_WITH_TAXONOMIES_C = `---
+var pageYamlWithTaxonomiesC = `---
 tags: 'E'
 categories: 'd'
 ---
 YAML frontmatter with tags and categories taxonomy.`
 
-var PAGE_JSON_WITH_TAXONOMIES = `{
+var pageJSONWithTaxonomies = `{
   "categories": "D",
   "tags": [
     "a",
@@ -49,18 +49,18 @@ var PAGE_JSON_WITH_TAXONOMIES = `{
 }
 JSON Front Matter with tags and categories`
 
-var PAGE_TOML_WITH_TAXONOMIES = `+++
+var pageTomlWithTaxonomies = `+++
 tags = [ "a", "B", "c" ]
 categories = "d"
 +++
 TOML Front Matter with tags and categories`
 
 func TestParseTaxonomies(t *testing.T) {
-       for _, test := range []string{PAGE_TOML_WITH_TAXONOMIES,
-               PAGE_JSON_WITH_TAXONOMIES,
-               PAGE_YAML_WITH_TAXONOMIES_A,
-               PAGE_YAML_WITH_TAXONOMIES_B,
-               PAGE_YAML_WITH_TAXONOMIES_C,
+       for _, test := range []string{pageTomlWithTaxonomies,
+               pageJSONWithTaxonomies,
+               pageYamlWithTaxonomiesA,
+               pageYamlWithTaxonomiesB,
+               pageYamlWithTaxonomiesC,
        } {
 
                p, _ := NewPage("page/with/taxonomy")
index 3c13fa298b1baf14b18c5e3260f2c65a7c3c34fc..544cc4baaf4493e756f9ef098c1281bbae703f4c 100644 (file)
@@ -534,7 +534,7 @@ func BenchmarkReplaceShortcodeTokens(b *testing.B) {
                {strings.Repeat("A ", 3000) + " {#{#HUGOSHORTCODE-1#}#}." + strings.Repeat("BC ", 1000) + " {#{#HUGOSHORTCODE-1#}#}.", map[string]string{"{#{#HUGOSHORTCODE-1#}#}": "Hello World"}, []byte(strings.Repeat("A ", 3000) + " Hello World." + strings.Repeat("BC ", 1000) + " Hello World.")},
        }
 
-       var in []input = make([]input, b.N*len(data))
+       var in = make([]input, b.N*len(data))
        var cnt = 0
        for i := 0; i < b.N; i++ {
                for _, this := range data {
index 54e1d076e5a5476ae2ed38d1e6b019d28608f699..64d6f5b7a75676d06566a42db54c5287d220abbd 100644 (file)
@@ -18,6 +18,7 @@ import (
        jww "github.com/spf13/jwalterweatherman"
 )
 
+// Sitemap configures the sitemap to be generated.
 type Sitemap struct {
        ChangeFreq string
        Priority   float64
index 047263e789002e52fecc4c2674cb776ff9363c3e..005be33b19d4cca4a4488110b152e121d41e2188 100644 (file)
@@ -20,7 +20,7 @@ import (
 
 func TestSitePossibleTaxonomies(t *testing.T) {
        site := new(Site)
-       page, _ := NewPageFrom(strings.NewReader(PAGE_YAML_WITH_TAXONOMIES_A), "path/to/page")
+       page, _ := NewPageFrom(strings.NewReader(pageYamlWithTaxonomiesA), "path/to/page")
        site.Pages = append(site.Pages, page)
        taxonomies := site.possibleTaxonomies()
        if !compareStringSlice(taxonomies, []string{"tags", "categories"}) {