robocar-tools/pkg/train/archives_test.go

13 lines
167 B
Go
Raw Normal View History

package train
2020-02-23 14:36:57 +00:00
import (
"testing"
)
2020-02-23 14:36:57 +00:00
func TestListArchives(t *testing.T) {
err := ListArchives()
if err != nil {
t.Errorf("unable to list buckets: %v", err)
}
}