mirror of https://github.com/docker/cli.git
13 lines
238 B
Go
13 lines
238 B
Go
|
package stack
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"gotest.tools/v3/icmd"
|
||
|
)
|
||
|
|
||
|
func TestConfigFullStack(t *testing.T) {
|
||
|
result := icmd.RunCommand("docker", "stack", "config", "--compose-file=./testdata/full-stack.yml")
|
||
|
result.Assert(t, icmd.Success)
|
||
|
}
|