github.com/alloyci/alloy-runner@v1.0.1-0.20180222164613-925503ccafd6/executors/docker/bindata_test.go (about) 1 package docker 2 3 import ( 4 "testing" 5 6 "github.com/stretchr/testify/assert" 7 ) 8 9 func TestPrebuiltX86_64Assets(t *testing.T) { 10 _, err := Asset("prebuilt-x86_64" + prebuiltImageExtension) 11 assert.NoError(t, err) 12 } 13 14 func TestPrebuiltARMAssets(t *testing.T) { 15 _, err := Asset("prebuilt-arm" + prebuiltImageExtension) 16 assert.NoError(t, err) 17 }