Tests that we can correctly switch over to the next pack if we still need to stream more blobs when a pack reaches EOF.
(t *testing.T)
| 193 | // Tests that we can correctly switch over to the next pack if we |
| 194 | // still need to stream more blobs when a pack reaches EOF. |
| 195 | func TestStreamMultiplePacks(t *testing.T) { |
| 196 | s, clean := newTestStorage(t, pack{testPack1}, pack{testPack2}) |
| 197 | defer clean() |
| 198 | storagetest.TestStreamer(t, s, storagetest.WantN(len(testPack1)+len(testPack2))) |
| 199 | } |
| 200 | |
| 201 | func TestStreamSkipRemovedBlobs(t *testing.T) { |
| 202 | ctx := context.Background() |
nothing calls this directly
no test coverage detected