From 99f82c2523cff9305c7f71178d963d02ec301529 Mon Sep 17 00:00:00 2001 From: tboros Date: Fri, 22 Oct 2021 12:08:23 +0200 Subject: [PATCH] #853 remove cluster_test.go Signed-off-by: tboros --- test/e2e/cluster_test.go | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 test/e2e/cluster_test.go diff --git a/test/e2e/cluster_test.go b/test/e2e/cluster_test.go deleted file mode 100644 index 563bd2b14..000000000 --- a/test/e2e/cluster_test.go +++ /dev/null @@ -1,31 +0,0 @@ -package e2e - -import ( - "github.com/onsi/ginkgo" -) - -var _ = ginkgo.Describe("[cluster-lifecycle] [cluster-join] cluster lifecycle functionality testing", func() { - ginkgo.BeforeEach(func() { - // TODO(RainbowMango): create a new member cluster which will be used by following tests. - }) - - ginkgo.AfterEach(func() { - // TODO(RainbowMango): remove member clusters that created for this test - }) - - ginkgo.Context("normal cluster join and unjoin functionality", func() { - ginkgo.It("new cluster could be joined to control plane", func() { - ginkgo.By("join new member cluster", func() { - // TODO(RainbowMango): add implementations here - }) - ginkgo.By("check member cluster status", func() { - // TODO(RainbowMango): add implementations here - }) - ginkgo.By("unjoin member cluster") - }) - }) - - ginkgo.Context("abnormal cluster join and unjoin functionality", func() { - // TODO(RainbowMango): add implementations here - }) -})