Files
at-container-registry/pkg/appview/storage/crew_test.go
T
2025-10-28 17:40:11 -05:00

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