Renamed files to make them more clear

Trying to figure out how to write. Might have to keep tables uncompressed for now.
This commit is contained in:
Caleb Gardner
2021-04-30 02:52:27 -05:00
parent 7cf15d48c7
commit 6ad6857d8d
11 changed files with 353 additions and 87 deletions
+16
View File
@@ -0,0 +1,16 @@
package squashfs
import (
"os"
"testing"
)
func TestWrite(t *testing.T) {
os.Remove("testing/test.sfs")
os.Mkdir("testing", os.ModePerm)
test, err := os.Create("testing/test.sfs")
if err != nil {
t.Fatal(err)
}
_ = test
}