(t *testing.T, args ...string)
| 16 | ) |
| 17 | |
| 18 | func newCLI(t *testing.T, args ...string) (*serpent.Invocation, config.Root) { |
| 19 | var root cli.RootCmd |
| 20 | cmd, err := root.Command(root.EnterpriseSubcommands()) |
| 21 | require.NoError(t, err) |
| 22 | return clitest.NewWithCommand(t, cmd, args...) |
| 23 | } |
| 24 | |
| 25 | func TestEnterpriseHandlersOK(t *testing.T) { |
| 26 | t.Parallel() |
no test coverage detected