robocar-tools/training/archives_test.go

11 lines
165 B
Go
Raw Normal View History

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