(d *apps.Deployment)
| 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)) |
| 237 | } |
| 238 | |
| 239 | func (f *fixture) expectUpdateFooStatusAction(foo *samplecontroller.Foo) { |
| 240 | action := core.NewUpdateSubresourceAction(schema.GroupVersionResource{Resource: "foos"}, "status", foo.Namespace, foo) |
no outgoing calls
no test coverage detected