summary refs log blame commit diff stats
path: root/lexical/sort_test.go
blob: c4a823e3dfa2bc9680a5dee5044132049a14c510 (plain) (tree)


















                                                                     
package lexical

import "testing"

// TestSort tests the Sort func.
func TestSort(t *testing.T) {
	words := make(map[string]string)

	words["dcba"] = "abcd"
	words["zyx"] = "xyz"

	for word, sorted := range words {
		s := Sort(word)
		if s != sorted {
			t.Errorf("Sort func failed, got %s, want %s",
				s, sorted)
		}
	}
}