1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
package integration
import (
"context"
"testing"
)
func TestObjectStorageClusters_List(t *testing.T) {
client, teardown := createTestClient(t, "fixtures/TestObjectStorageClusters_List")
defer teardown()
objectStorageClusters, err := client.ListObjectStorageClusters(context.Background(), nil)
if err != nil {
t.Errorf("Error listing objectStorageClusters, expected struct - error %v", err)
}
if len(objectStorageClusters) == 0 {
t.Errorf("Expected a list of objectStorageClusters - %v", objectStorageClusters)
}
}
|