ref: 1a335e5982b76c5cd7850326ae6b333d7e265e2e
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)
}
}