mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
26 lines
415 B
Go
26 lines
415 B
Go
package cmd
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
"testing"
|
|
|
|
"github.com/edgelesssys/constellation/internal/constants"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestVersionCmd(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
cmd := newVersionCmd()
|
|
b := &bytes.Buffer{}
|
|
cmd.SetOut(b)
|
|
|
|
err := cmd.Execute()
|
|
assert.NoError(err)
|
|
|
|
s, err := io.ReadAll(b)
|
|
assert.NoError(err)
|
|
assert.Contains(string(s), constants.CliVersion)
|
|
}
|