13 lines
167 B
Go
13 lines
167 B
Go
package train
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestListArchives(t *testing.T) {
|
|
err := ListArchives()
|
|
if err != nil {
|
|
t.Errorf("unable to list buckets: %v", err)
|
|
}
|
|
}
|