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
import (
"bytes"
"html/template"
- "reflect"
"strings"
"testing"
}
}
}
-
-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)
- }
-}