(t *testing.T)
| 15 | ) |
| 16 | |
| 17 | func TestNewDeployCommand_BasicShape(t *testing.T) { |
| 18 | cmd := NewDeployCommand(func(string) error { return nil }) |
| 19 | require.NotNil(t, cmd) |
| 20 | assert.Equal(t, "deploy <workflow>...", cmd.Use) |
| 21 | assert.Equal(t, "deploy", cmd.Name()) |
| 22 | } |
| 23 | |
| 24 | func TestNewDeployCommand_RequiresWorkflowArg(t *testing.T) { |
| 25 | cmd := NewDeployCommand(func(string) error { return nil }) |
nothing calls this directly
no test coverage detected