(t *testing.T)
| 262 | } |
| 263 | |
| 264 | func TestDoNothing(t *testing.T) { |
| 265 | f := newFixture(t) |
| 266 | foo := newFoo("test", ptr.To[int32](1)) |
| 267 | _, ctx := ktesting.NewTestContext(t) |
| 268 | |
| 269 | d := newDeployment(foo) |
| 270 | |
| 271 | f.fooLister = append(f.fooLister, foo) |
| 272 | f.objects = append(f.objects, foo) |
| 273 | f.deploymentLister = append(f.deploymentLister, d) |
| 274 | f.kubeobjects = append(f.kubeobjects, d) |
| 275 | |
| 276 | f.expectUpdateFooStatusAction(foo) |
| 277 | f.run(ctx, getRef(foo, t)) |
| 278 | } |
| 279 | |
| 280 | func TestUpdateDeployment(t *testing.T) { |
| 281 | f := newFixture(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…