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