ref: 1599c124b605bd91542dba27c2deedc163e516a4
dir: /nodes/nodes_test.go/
package nodes
import (
"testing"
)
func TestFilterText(t *testing.T) {
in := "ebenfalls"
exp := "ebenfalls"
if out := filterText(in); out != exp {
t.Fatalf("%+v", out)
}
}