1 package stack 2 3 import ( 4 "testing" 5 6 "gotest.tools/v3/icmd" 7 ) 8 9 func TestConfigFullStack(t *testing.T) { 10 result := icmd.RunCommand("docker", "stack", "config", "--compose-file=./testdata/full-stack.yml") 11 result.Assert(t, icmd.Success) 12 } 13