(ctx context.Context, t *testing.T, pc *cache.PersistentCache, key string)
| 336 | } |
| 337 | |
| 338 | func verifyNotCached(ctx context.Context, t *testing.T, pc *cache.PersistentCache, key string) { |
| 339 | t.Helper() |
| 340 | |
| 341 | verifyCached(ctx, t, pc, key, nil) |
| 342 | } |
| 343 | |
| 344 | func verifyBlobExists(ctx context.Context, t *testing.T, st cache.Storage, blobID blob.ID) { |
| 345 | t.Helper() |
no test coverage detected