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

@ -118,7 +118,7 @@ func TestColourspaceIsSupported(t *testing.T) {
}
func readFile(file string) []byte {
data, _ := os.Open(path.Join("fixtures", file))
data, _ := os.Open(path.Join("testdata", file))
buf, _ := ioutil.ReadAll(data)
return buf
}