5744605fc6
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
15 lines
355 B
Go
15 lines
355 B
Go
package container_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/v2/container"
|
|
statustest "github.com/nspcc-dev/neofs-api-go/v2/status/test"
|
|
)
|
|
|
|
func TestStatusCodes(t *testing.T) {
|
|
statustest.TestCodes(t, container.LocalizeFailStatus, container.GlobalizeFail,
|
|
container.StatusNotFound, 3072,
|
|
container.StatusEACLNotFound, 3073,
|
|
)
|
|
}
|