Skip to content

Commit 68d2acb

Browse files
committed
occm: convert bash based lbaas tests into go tests
1 parent 78fca23 commit 68d2acb

7 files changed

Lines changed: 1410 additions & 857 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package cloudprovider
2+
3+
import (
4+
"flag"
5+
"testing"
6+
7+
"github.com/onsi/ginkgo/v2"
8+
"github.com/onsi/gomega"
9+
)
10+
11+
func TestCloudProvider(t *testing.T) {
12+
gomega.RegisterFailHandler(ginkgo.Fail)
13+
14+
// Parse flags before running specs
15+
flag.Parse()
16+
17+
ginkgo.RunSpecs(t, "CloudProvider E2E Suite")
18+
}

0 commit comments

Comments
 (0)