hugolib: Use reflect.DeepEqual in tests
authorCameron Moore <moorereason@gmail.com>
Tue, 27 Dec 2016 01:42:43 +0000 (19:42 -0600)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 27 Dec 2016 10:19:25 +0000 (11:19 +0100)
hugolib/page_taxonomy_test.go
hugolib/taxonomy_test.go

index 30efd8c7f15cc5291422f9688eca32bd7031047d..acb6c28f14b975372859c3a539975a0d5e1f0d07 100644 (file)
@@ -14,6 +14,7 @@
 package hugolib
 
 import (
+       "reflect"
        "strings"
        "testing"
 )
@@ -73,7 +74,7 @@ func TestParseTaxonomies(t *testing.T) {
 
                if params, ok := param.([]string); ok {
                        expected := []string{"a", "b", "c"}
-                       if !compareStringSlice(params, expected) {
+                       if !reflect.DeepEqual(params, expected) {
                                t.Errorf("Expected %s: got: %s", expected, params)
                        }
                } else if params, ok := param.(string); ok {
@@ -91,17 +92,3 @@ func TestParseTaxonomies(t *testing.T) {
                }
        }
 }
-
-func compareStringSlice(a, b []string) bool {
-       if len(a) != len(b) {
-               return false
-       }
-
-       for i, v := range a {
-               if b[i] != v {
-                       return false
-               }
-       }
-
-       return true
-}
index 4c6acf509304399c8b40dccce0f3e91af19671be..2d436c7dd3bacb1616660b0e7c7bb0d4c32a673f 100644 (file)
@@ -15,6 +15,7 @@ package hugolib
 
 import (
        "path/filepath"
+       "reflect"
        "testing"
 
        "github.com/spf13/viper"
@@ -43,7 +44,7 @@ func TestByCountOrderOfTaxonomies(t *testing.T) {
                st = append(st, t.Name)
        }
 
-       if !compareStringSlice(st, []string{"a", "b", "c"}) {
+       if !reflect.DeepEqual(st, []string{"a", "b", "c"}) {
                t.Fatalf("ordered taxonomies do not match [a, b, c].  Got: %s", st)
        }
 }