package create import ( . "github.com/onsi/ginkgo" "mashibing.com/pkg/mashibing-deployment/test/framework" ) // 真正的测试函数 // 测试创建Nodeport模式 func CreateNodeportMsbDeployment(ctx *framework.TestContext, f *framework.Framework) { Context("Create msbdeployment mod nodeport", func() { It("Should be create mode nodeport success", func() {}) It("Should be exist msbdeployment", func() {}) It("Should be exist deployment", func() {}) It("Should be exist service", func() {}) It("Should not be exist ingress", func() {}) }) Context("Delete msbdeployment mod nodeport", func() { It("Should be delete mod nodeport success", func() {}) It("Should not be exist msbdeployment", func() {}) It("Should not be exist deployment", func() {}) It("Should not be exist service", func() {}) It("Should not be exist ingress", func() {}) }) }