From 3357f04f400655ba7edfff18d08228dd7eb7010b Mon Sep 17 00:00:00 2001 From: Allan Nava Date: Mon, 10 Jun 2024 14:57:08 +0200 Subject: [PATCH] added customer get zone --- test/api_customer_test.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/test/api_customer_test.go b/test/api_customer_test.go index a6bea40..0e605d8 100644 --- a/test/api_customer_test.go +++ b/test/api_customer_test.go @@ -1,2 +1,17 @@ package test + +func TestGetCustomerS3(t *testing.T) { + // + c, err := GetCompress() + if err != nil { + t.Fatalf(err.Error()) + } + // need to be finish + zone, err := c.GetCustomerS3Zone() + if err != nil { + t.Fatalf(err.Error()) + } + log.Println("zone ", zone) + //c.IsDebug() +}