Files
zot/pkg/test/auth/bearer_test.go
T
2024-01-31 20:34:07 -08:00

16 lines
300 B
Go

package auth_test
import (
"testing"
. "github.com/smartystreets/goconvey/convey"
auth "zotregistry.dev/zot/pkg/test/auth"
)
func TestBearerServer(t *testing.T) {
Convey("test MakeAuthTestServer() no serve key", t, func() {
So(func() { auth.MakeAuthTestServer("", "") }, ShouldPanic)
})
}