mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
204 B
Go
16 lines
204 B
Go
3 years ago
|
// +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)
|
||
|
}
|