(t *testing.T)
| 13 | ) |
| 14 | |
| 15 | func TestSelectorForTime_FixedMonth(t *testing.T) { |
| 16 | got := SelectorForTime(time.Date(2026, 5, 22, 12, 0, 0, 0, time.UTC)) |
| 17 | if got != "e2a202605" { |
| 18 | t.Errorf("SelectorForTime = %q, want e2a202605", got) |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | func TestGenerateKeypair_RoundTrip(t *testing.T) { |
| 23 | kp, err := GenerateKeypair() |
nothing calls this directly
no test coverage detected