(t *testing.T, pathToData map[string][]byte)
| 659 | } |
| 660 | |
| 661 | func testNewBucketForPathToData(t *testing.T, pathToData map[string][]byte) storage.ReadBucket { |
| 662 | bucket, err := storagemem.NewReadBucket(pathToData) |
| 663 | require.NoError(t, err) |
| 664 | return bucket |
| 665 | } |
| 666 | |
| 667 | func testGetDepOpaqueIDToDirect(t *testing.T, module bufmodule.Module) map[string]bool { |
| 668 | moduleDeps, err := module.ModuleDeps() |
no test coverage detected
searching dependent graphs…