Fix failing tests on Windows

To simulate failures opening a cache file, fixtures are written without the read permission bits.
Since Unix permission bits have no meaning on Windows, a slightly more complicated solution is required to achieve the same permissions.
Thankfully, there's a library to abstract that already.
This commit is contained in:
William Elwood 2019-11-07 09:15:16 +00:00 committed by Frank Denis
parent 77a4a3da90
commit 4324a09fc9
18 changed files with 602 additions and 5 deletions

8
vendor/github.com/hectane/go-acl/posix.go generated vendored Normal file
View file

@ -0,0 +1,8 @@
//+build !windows
package acl
import "os"
// Chmod is os.Chmod.
var Chmod = os.Chmod