56234e37a1
- Change everything to package main. - Make main a little more user friendly.
34 lines
690 B
Go
34 lines
690 B
Go
package main
|
|
|
|
import (
|
|
"sort"
|
|
"testing"
|
|
"text/template"
|
|
)
|
|
|
|
func TestTemplateListSort(t *testing.T) {
|
|
templs := templateList{
|
|
template.New("bob.tpl"),
|
|
template.New("all.tpl"),
|
|
template.New("struct.tpl"),
|
|
template.New("ttt.tpl"),
|
|
}
|
|
|
|
expected := []string{"bob.tpl", "all.tpl", "struct.tpl", "ttt.tpl"}
|
|
|
|
for i, v := range templs {
|
|
if v.Name() != expected[i] {
|
|
t.Errorf("Order mismatch, expected: %s, got: %s", expected[i], v.Name())
|
|
}
|
|
}
|
|
|
|
expected = []string{"struct.tpl", "all.tpl", "bob.tpl", "ttt.tpl"}
|
|
|
|
sort.Sort(templs)
|
|
|
|
for i, v := range templs {
|
|
if v.Name() != expected[i] {
|
|
t.Errorf("Order mismatch, expected: %s, got: %s", expected[i], v.Name())
|
|
}
|
|
}
|
|
}
|