mirror of
https://tangled.org/evan.jarrett.net/at-container-registry
synced 2026-04-20 16:40:29 +00:00
15 lines
360 B
Go
15 lines
360 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, "", nil)
|
|
// If we get here without panic, test passes
|
|
}
|
|
|
|
// TODO: Add comprehensive tests with HTTP client mocking
|