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