huff/huffman_test.go

14 lines
201 B
Go

package huff
import (
"fmt"
"testing"
)
func TestNode(t *testing.T) {
// Paths defined in words_test.go
w := GetWeights(Paths, "/")
pt := NewWordTree(w.Sorted())
fmt.Printf("%#v\n", pt)
}