mirror of https://github.com/docker/cli.git
25 lines
673 B
Go
25 lines
673 B
Go
package container
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/docker/cli/internal/test"
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/api/types/filters"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func TestContainerPrunePromptTermination(t *testing.T) {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
t.Cleanup(cancel)
|
|
|
|
cli := test.NewFakeCli(&fakeClient{
|
|
containerPruneFunc: func(ctx context.Context, pruneFilters filters.Args) (types.ContainersPruneReport, error) {
|
|
return types.ContainersPruneReport{}, errors.New("fakeClient containerPruneFunc should not be called")
|
|
},
|
|
})
|
|
cmd := NewPruneCommand(cli)
|
|
test.TerminatePrompt(ctx, t, cmd, cli)
|
|
}
|