(d *apps.Deployment)
| 229 | } |
| 230 | |
| 231 | func (f *fixture) expectCreateDeploymentAction(d *apps.Deployment) { |
| 232 | f.kubeactions = append(f.kubeactions, core.NewCreateAction(schema.GroupVersionResource{Resource: "deployments"}, d.Namespace, d)) |
| 233 | } |
| 234 | |
| 235 | func (f *fixture) expectUpdateDeploymentAction(d *apps.Deployment) { |
| 236 | f.kubeactions = append(f.kubeactions, core.NewUpdateAction(schema.GroupVersionResource{Resource: "deployments"}, d.Namespace, d)) |
no outgoing calls
no test coverage detected