aboutsummaryrefslogtreecommitdiff
path: root/misc/namegen/elfs/elfs_test.go
blob: 160911164e1d49ac5ff542b0b138d9775d96339e (plain)
1
2
3
4
5
6
7
8
9
10
11
package elfs

import "testing"

func TestNext(t *testing.T) {
	n := Next()
	t.Log(n)
	if len(n) == 0 {
		t.Fatalf("MakeName had a zero output")
	}
}