ref: 8c68719b7a3b8c7e4a1db663e6d2802a220924c5
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)
}
}