(t *testing.T)
| 35 | } |
| 36 | |
| 37 | func Test_VersionCommand(t *testing.T) { |
| 38 | t.Parallel() |
| 39 | out, err := execute(t, VersionCommand(mockInfo), nil) |
| 40 | assert.NoError(t, err) |
| 41 | assert.Equal(t, "Version: v88\nCommit: abc\n", out) |
| 42 | } |
| 43 | |
| 44 | func Test_SetCommand(t *testing.T) { |
| 45 | t.Parallel() |
nothing calls this directly
no test coverage detected