shithub: mycel

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