From 6b954a38082a35e0e9b85e1a4e7b9df2335792e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=94=90?= Date: Wed, 26 Apr 2023 10:57:41 +0800 Subject: [PATCH] =?UTF-8?q?feat(bingocloud)=EF=BC=9Aremove=20test=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/multicloud/bingocloud/bingo_test.go | 33 ------------------------- 1 file changed, 33 deletions(-) delete mode 100644 pkg/multicloud/bingocloud/bingo_test.go diff --git a/pkg/multicloud/bingocloud/bingo_test.go b/pkg/multicloud/bingocloud/bingo_test.go deleted file mode 100644 index 0d83ef5a9..000000000 --- a/pkg/multicloud/bingocloud/bingo_test.go +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright 2019 Yunion -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package bingocloud - -import ( - "testing" -) - -var bingoCloudClient, _ = NewBingoCloudClient(&BingoCloudConfig{ - endpoint: "http://10.203.136.11", - accessKey: "373ABE5836BB9E82FCFB", - secretKey: "WzkzNzk0Mzg2ODQxODQ5REJEN0U4QTg1NTY5NzA2", - debug: true, -}) - -func TestNewBingoCloudClient(t *testing.T) { - bingoCloudClient.managerClient = bingoCloudClient - regions, _ := bingoCloudClient.GetRegions() - regions[0].client = bingoCloudClient - t.Log(regions[0].getStorages()) -}