#853 remove cluster_test.go

Signed-off-by: tboros <tboros@bol.com>
This commit is contained in:
tboros 2021-10-22 12:08:23 +02:00
parent 23793e37f7
commit 99f82c2523
1 changed files with 0 additions and 31 deletions

View File

@ -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
})
})