(t *testing.T)
| 69 | } |
| 70 | |
| 71 | func TestNewCreateCommand_SubcommandCount(t *testing.T) { |
| 72 | cmd := NewCreateCommand() |
| 73 | assert.Len(t, cmd.Commands(), 5, "create command should have exactly 5 subcommands") |
| 74 | } |
| 75 | |
| 76 | // --- Users command --- |
| 77 |
nothing calls this directly
no test coverage detected