initial commits

master
Charles Iliya Krempeaux 2022-12-14 09:50:51 -08:00
parent 62469459b5
commit cf7c9418bc
1 changed files with 12 additions and 0 deletions

View File

@ -249,5 +249,17 @@ func TestRegularFile(t *testing.T) {
continue
}
}
{
var expected string = test.FileContent
var actual string = fileinfo.Sys().(string)
if expected != actual {
t.Errorf("For test #%d, the actual value for sys was not what was expected.", testNumber)
t.Logf("EXPECTED SYS: %q", expected)
t.Logf("ACTUAL SYS: %q", actual)
continue
}
}
}
}