package hugolib
import (
+ "reflect"
"strings"
"testing"
)
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 {
}
}
}
-
-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
-}
import (
"path/filepath"
+ "reflect"
"testing"
"github.com/spf13/viper"
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)
}
}