aboutsummaryrefslogtreecommitdiff
path: root/uuid_test.go
blob: 134c868721b48bb94de3effb61d9d3d9e67df8d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
package anki

import "testing"

func TestParseUUID(t *testing.T) {
	uuid, err := ParseUUID(ServiceUUID)
	if err != nil {
		t.Error(err)
	}
	t.Log(uuid)
}