This commit is contained in:
jay brown
2025-03-17 16:48:24 -07:00
parent f531d06651
commit 2b1c33429f
@@ -1,15 +0,0 @@
package rbac
import (
"testing"
)
// TestAuthConfig creates an initialized AuthConfig for testing
func TestAuthConfig(t *testing.T, privateKeyPath, publicKeyPath string) *AuthConfig {
config, err := NewLocalAuthConfig(privateKeyPath, publicKeyPath)
if err != nil {
t.Fatalf("Failed to initialize auth config: %v", err)
}
return config
}