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