1
0
mirror of synced 2026-03-31 05:54:20 +00:00
Files
flux2/cmd/flux/version_test.go
Stefan Prodan d1982e64b2 Refactor e2e tests
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
2021-08-17 13:55:14 +03:00

16 lines
204 B
Go

// +build unit
package main
import (
"testing"
)
func TestVersion(t *testing.T) {
cmd := cmdTestCase{
args: "--version",
goldenValue: "flux version 0.0.0-dev.0\n",
}
cmd.runTestCmd(t)
}