shithub: mycel

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