mirror of
https://tangled.org/evan.jarrett.net/at-container-registry
synced 2026-08-31 23:36:57 +00:00
15 lines
355 B
Go
15 lines
355 B
Go
package storage
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
)
|
|
|
|
func TestEnsureCrewMembership_EmptyHoldDID(t *testing.T) {
|
|
// Test that empty hold DID returns early without error (best-effort function)
|
|
EnsureCrewMembership(context.Background(), nil, nil, "")
|
|
// If we get here without panic, test passes
|
|
}
|
|
|
|
// TODO: Add comprehensive tests with HTTP client mocking
|