helpers: Remove unusded WordCount
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 4 Jan 2017 23:00:00 +0000 (00:00 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 4 Jan 2017 23:00:00 +0000 (00:00 +0100)
helpers/content.go
helpers/content_test.go

index 9b245972e2c12dc55af619b4d0b195b103f9f8c4..939be05540168f2ad7687fb56dbae4c2fb1cb265 100644 (file)
@@ -421,16 +421,6 @@ func totalWordsOld(s string) int {
        return len(strings.Fields(s))
 }
 
-// WordCount takes content and returns a map of words and count of each word.
-func WordCount(s string) map[string]int {
-       m := make(map[string]int)
-       for _, f := range strings.Fields(s) {
-               m[f]++
-       }
-
-       return m
-}
-
 // TruncateWordsByRune truncates words by runes.
 func TruncateWordsByRune(words []string, max int) (string, bool) {
        count := 0
index 22c81005f436d4405f489c89c96b1af94fbb4eba..67c50f9d67689aa21ff0cd5b44fb21c6740efec0 100644 (file)
@@ -16,7 +16,6 @@ package helpers
 import (
        "bytes"
        "html/template"
-       "reflect"
        "strings"
        "testing"
 
@@ -460,13 +459,3 @@ func BenchmarkTotalWordsOld(b *testing.B) {
                }
        }
 }
-
-func TestWordCount(t *testing.T) {
-       testString := "Two, Words!"
-       expectedMap := map[string]int{"Two,": 1, "Words!": 1}
-       actualMap := WordCount(testString)
-
-       if !reflect.DeepEqual(expectedMap, actualMap) {
-               t.Errorf("Actual Map (%v) does not equal expected (%v)", actualMap, expectedMap)
-       }
-}