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