shithub: mycel

ref: ef158113c2f6ecaf3c0f8cd2410024f8b9736c35
dir: /nodes/nodes_test.go/

View raw version
package nodes

import (
	"testing"
)

func TestFilterText(t *testing.T) {
	in := "eben­falls"
	exp := "ebenfalls"
	if out := filterText(in); out != exp {
		t.Fatalf("%+v", out)
	}
}