mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-09 17:27:28 +00:00
Remove use of the fake client, and replace with a real client connected to the testEnv. This required fixes to the yaml files as the testEnv has stricter verifcation of objects. This also meant it was not possible to test a GitRepository with a missing artifact since that is not a valid state. The tests are slower than before, taking around 7-10 seconds each because the testEnv is setup and destroyed for every test. These will be sped up in a follow up PR. Signed-off-by: Allen Porter <allen@thebends.org>
16 lines
251 B
Go
16 lines
251 B
Go
// +build unit
|
|
|
|
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestVersion(t *testing.T) {
|
|
cmd := cmdTestCase{
|
|
args: "--version",
|
|
testClusterMode: TestEnvClusterMode,
|
|
goldenValue: "flux version 0.0.0-dev.0\n",
|
|
}
|
|
cmd.runTestCmd(t)
|
|
}
|