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