(ctx context.Context, pod client.Object)
| 113 | } |
| 114 | |
| 115 | func deletePod(ctx context.Context, pod client.Object) { |
| 116 | cl, err := client.New(cfg, client.Options{}) |
| 117 | Expect(err).NotTo(HaveOccurred()) |
| 118 | err = cl.Delete(ctx, pod) |
| 119 | Expect(err).NotTo(HaveOccurred()) |
| 120 | } |
| 121 | |
| 122 | var _ = Describe("Informer Cache", func() { |
| 123 | CacheTest(cache.New, cache.Options{}) |
no test coverage detected
searching dependent graphs…