package elfs

import "testing"

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