15 lines
365 B
Go
15 lines
365 B
Go
package container_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/TrueCloudLab/frostfs-api-go/v2/container"
|
|
statustest "github.com/TrueCloudLab/frostfs-api-go/v2/status/test"
|
|
)
|
|
|
|
func TestStatusCodes(t *testing.T) {
|
|
statustest.TestCodes(t, container.LocalizeFailStatus, container.GlobalizeFail,
|
|
container.StatusNotFound, 3072,
|
|
container.StatusEACLNotFound, 3073,
|
|
)
|
|
}
|