mirror of https://github.com/docker/cli.git
22 lines
474 B
Go
22 lines
474 B
Go
package containerized
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/containerd/containerd/containers"
|
|
specs "github.com/opencontainers/runtime-spec/specs-go"
|
|
"gotest.tools/v3/assert"
|
|
)
|
|
|
|
func TestWithAllCapabilities(t *testing.T) {
|
|
c := &containers.Container{}
|
|
s := &specs.Spec{
|
|
Process: &specs.Process{},
|
|
}
|
|
ctx := context.Background()
|
|
err := WithAllCapabilities(ctx, nil, c, s)
|
|
assert.NilError(t, err)
|
|
assert.Assert(t, len(s.Process.Capabilities.Bounding) > 0)
|
|
}
|