mirror of
https://github.com/project-zot/zot.git
synced 2025-01-06 22:40:28 -05:00
ea7dbf9e5c
Signed-off-by: Alex Stan <alexandrustan96@yahoo.ro>
15 lines
312 B
Go
15 lines
312 B
Go
package errors_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
|
|
apiErr "zotregistry.io/zot/pkg/api/errors"
|
|
)
|
|
|
|
func TestUnknownCodeError(t *testing.T) {
|
|
Convey("Retrieve a new error with unknown code", t, func() {
|
|
So(func() { _ = apiErr.NewError(123456789, nil) }, ShouldPanic)
|
|
})
|
|
}
|