ref: 45d380a2ac7ab73fb8bf38cf3f261189529dc926
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)
}
}