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