TinySkin/utils/uuid_test.go
thehrz 145bb045e9
Some checks failed
CI / deploy (push) Failing after 2m53s
fork from xmdhs/authlib-skin
2025-01-24 16:57:58 +08:00

12 lines
148 B
Go

package utils
import (
"testing"
)
func TestUUIDGen(t *testing.T) {
if UUIDGen("xmdhs") != "6560e064bcfc32baa5fa2aa8831f1298" {
t.Fail()
}
}