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