feat: add Gopkg manifests, move fixtures to testdata, add vendor dependencies

This commit is contained in:
Tomas Aparicio 2017-10-30 09:41:13 +01:00
parent ba1cf6a030
commit 127eb5cfbc
68 changed files with 534 additions and 68 deletions

View file

@ -163,7 +163,7 @@ func TestVipsMemory(t *testing.T) {
}
func readImage(file string) []byte {
img, _ := os.Open(path.Join("fixtures", file))
img, _ := os.Open(path.Join("testdata", file))
buf, _ := ioutil.ReadAll(img)
defer img.Close()
return buf