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

@ -22,7 +22,7 @@ func TestDeterminateImageType(t *testing.T) {
}
for _, file := range files {
img, _ := os.Open(path.Join("fixtures", file.name))
img, _ := os.Open(path.Join("testdata", file.name))
buf, _ := ioutil.ReadAll(img)
defer img.Close()
@ -49,7 +49,7 @@ func TestDeterminateImageTypeName(t *testing.T) {
}
for _, file := range files {
img, _ := os.Open(path.Join("fixtures", file.name))
img, _ := os.Open(path.Join("testdata", file.name))
buf, _ := ioutil.ReadAll(img)
defer img.Close()