(t *testing.T, env *testenv.CLITest, root object.ID)
| 401 | } |
| 402 | |
| 403 | func mustGetFileMap(t *testing.T, env *testenv.CLITest, root object.ID) map[string]*snapshot.DirEntry { |
| 404 | t.Helper() |
| 405 | |
| 406 | fileMap := map[string]*snapshot.DirEntry{} |
| 407 | mustListDirEntries(t, env, fileMap, root, "") |
| 408 | |
| 409 | return fileMap |
| 410 | } |
| 411 | |
| 412 | func mustListDirEntries(t *testing.T, env *testenv.CLITest, out map[string]*snapshot.DirEntry, root object.ID, prefix string) { |
| 413 | t.Helper() |
no test coverage detected