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