summaryrefslogtreecommitdiff
path: root/check_test.go
blob: 61d2f22bdc04dde52b0689f43c1301a28b86264e (plain)
1
2
3
4
5
6
7
8
9
10
package main

import "testing"

func TestKey(t *testing.T) {
	k := Key()
	if len(k) != 32 {
		t.Error("expected a string of 32 chars")
	}
}