blob: ec7cd4f6dce75fc46a4ccd54a18f652a77b31ff8 [file] [log] [blame]
package system
import (
"context"
"testing"
"github.com/google/uuid"
"gotest.tools/assert"
)
func TestUUIDGeneration(t *testing.T) {
defer setupTest(t)()
c := testEnv.APIClient()
info, err := c.Info(context.Background())
assert.NilError(t, err)
_, err = uuid.Parse(info.ID)
assert.NilError(t, err)
}