mirror of https://github.com/docker/cli.git
18 lines
358 B
Go
18 lines
358 B
Go
package stack
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"testing"
|
|
|
|
"github.com/docker/cli/internal/test"
|
|
"gotest.tools/v3/assert"
|
|
)
|
|
|
|
func TestDeployWithEmptyName(t *testing.T) {
|
|
cmd := newDeployCommand(test.NewFakeCli(&fakeClient{}), nil)
|
|
cmd.SetArgs([]string{"' '"})
|
|
cmd.SetOut(ioutil.Discard)
|
|
|
|
assert.ErrorContains(t, cmd.Execute(), `invalid stack name: "' '"`)
|
|
}
|