shithub: mycel

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