mirror of
https://github.com/project-zot/zot.git
synced 2025-01-06 22:40:28 -05:00
15 lines
293 B
Go
15 lines
293 B
Go
|
package api_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/anuvu/zot/pkg/api"
|
||
|
. "github.com/smartystreets/goconvey/convey"
|
||
|
)
|
||
|
|
||
|
func TestUnknownCodeError(t *testing.T) {
|
||
|
Convey("Retrieve a new error with unknown code", t, func() {
|
||
|
So(func() { _ = api.NewError(123456789, nil) }, ShouldPanic)
|
||
|
})
|
||
|
}
|