Renamed BlockReader to MetadataReader (more correct)

SOME work on fragments (not working still...)
This commit is contained in:
Caleb Gardner
2020-11-23 16:50:00 -06:00
parent ae2cc5ab54
commit 5761ad59cf
9 changed files with 80 additions and 24 deletions
+5 -3
View File
@@ -35,12 +35,14 @@ func TestMain(t *testing.T) {
if err != nil {
t.Fatal(err)
}
i, err := rdr.GetInodeFromPath("code-oss.desktop")
rdr.GetFileStructure()
extractionFil := ".DirIcon"
i, err := rdr.GetInodeFromPath(extractionFil)
if err != nil {
t.Fatal(err)
}
os.Remove(wd + "/testing/code-oss.desktop")
desk, err := os.Create(wd + "/testing/code-oss.desktop")
os.Remove(wd + "/testing/" + extractionFil)
desk, err := os.Create(wd + "/testing/" + extractionFil)
if err != nil {
t.Fatal(err)
}