aboutsummaryrefslogtreecommitdiff
path: root/misc/namegen/namegen_test.go
blob: 36c66f12eb3852afa1e4f45ef5f8480a18ffa418 (plain)
1
2
3
4
5
6
7
8
9
10
11
package namegen

import "testing"

func TestNext(t *testing.T) {
	name := Next()
	t.Log(name)
	if name == "" {
		t.Fatal("expected a name")
	}
}