mirror of
https://github.com/docker/compose.git
synced 2026-09-01 23:30:41 +00:00
Merge pull request #418 from chris-crone/errdefs-tests
Move errdefs package to gotest.tools
This commit is contained in:
commit
cbfa270f2f
1 changed files with 9 additions and 9 deletions
|
|
@ -20,33 +20,33 @@ import (
|
|||
"testing"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"gotest.tools/v3/assert"
|
||||
)
|
||||
|
||||
func TestIsNotFound(t *testing.T) {
|
||||
err := errors.Wrap(ErrNotFound, `object "name"`)
|
||||
assert.True(t, IsNotFoundError(err))
|
||||
assert.Assert(t, IsNotFoundError(err))
|
||||
|
||||
assert.False(t, IsNotFoundError(errors.New("another error")))
|
||||
assert.Assert(t, !IsNotFoundError(errors.New("another error")))
|
||||
}
|
||||
|
||||
func TestIsAlreadyExists(t *testing.T) {
|
||||
err := errors.Wrap(ErrAlreadyExists, `object "name"`)
|
||||
assert.True(t, IsAlreadyExistsError(err))
|
||||
assert.Assert(t, IsAlreadyExistsError(err))
|
||||
|
||||
assert.False(t, IsAlreadyExistsError(errors.New("another error")))
|
||||
assert.Assert(t, !IsAlreadyExistsError(errors.New("another error")))
|
||||
}
|
||||
|
||||
func TestIsForbidden(t *testing.T) {
|
||||
err := errors.Wrap(ErrForbidden, `object "name"`)
|
||||
assert.True(t, IsForbiddenError(err))
|
||||
assert.Assert(t, IsForbiddenError(err))
|
||||
|
||||
assert.False(t, IsForbiddenError(errors.New("another error")))
|
||||
assert.Assert(t, !IsForbiddenError(errors.New("another error")))
|
||||
}
|
||||
|
||||
func TestIsUnknown(t *testing.T) {
|
||||
err := errors.Wrap(ErrUnknown, `object "name"`)
|
||||
assert.True(t, IsUnknownError(err))
|
||||
assert.Assert(t, IsUnknownError(err))
|
||||
|
||||
assert.False(t, IsUnknownError(errors.New("another error")))
|
||||
assert.Assert(t, !IsUnknownError(errors.New("another error")))
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue