mirror of https://github.com/docker/compose.git
21 lines
349 B
Go
21 lines
349 B
Go
package commands
|
|
|
|
import (
|
|
"bytes"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/docker/ecs-plugin/internal"
|
|
|
|
"gotest.tools/v3/assert"
|
|
)
|
|
|
|
func TestVersion(t *testing.T) {
|
|
root := NewRootCmd(nil)
|
|
var out bytes.Buffer
|
|
root.SetOut(&out)
|
|
root.SetArgs([]string{"version"})
|
|
root.Execute()
|
|
assert.Check(t, strings.Contains(out.String(), internal.Version))
|
|
}
|