Files
query-orchestration/internal/rbac/testutil.go
T
jay brown f531d06651 wip
2025-03-17 16:36:02 -07:00

11 lines
250 B
Go

package rbac
import (
"testing"
)
// TestKeyProvider creates a test key provider for testing
func TestKeyProvider(t *testing.T, privateKeyPath, publicKeyPath string) *LocalKeyProvider {
return NewLocalKeyProvider(privateKeyPath, publicKeyPath)
}