Rename test suites

This commit is contained in:
Hannes Hörl 2017-12-04 11:32:26 +00:00 committed by Gareth Smith
parent 4f1e692bec
commit 84b1e9b91f
4 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ import (
func TestIntegration(t *testing.T) { func TestIntegration(t *testing.T) {
RegisterFailHandler(Fail) RegisterFailHandler(Fail)
RunSpecs(t, "Integration Suite") RunSpecs(t, "DemoCLI Integration Suite")
} }
var ( var (

View File

@ -9,7 +9,7 @@ import (
"github.com/onsi/gomega/gexec" "github.com/onsi/gomega/gexec"
) )
var _ = Describe("Integration", func() { var _ = Describe("DemoCLI Integration", func() {
It("can give us a helpful help message", func() { It("can give us a helpful help message", func() {
helpfulMessage := `This is a demo kubernetes CLI, which interacts with the kubernetes API.` helpfulMessage := `This is a demo kubernetes CLI, which interacts with the kubernetes API.`

View File

@ -14,7 +14,7 @@ import (
func TestIntegration(t *testing.T) { func TestIntegration(t *testing.T) {
RegisterFailHandler(Fail) RegisterFailHandler(Fail)
RunSpecs(t, "Integration Suite") RunSpecs(t, "Framework Integration Suite")
} }
var ( var (

View File

@ -10,7 +10,7 @@ import (
"k8s.io/kubectl/pkg/framework/test" "k8s.io/kubectl/pkg/framework/test"
) )
var _ = Describe("Integration", func() { var _ = Describe("The Testing Framework", func() {
It("Successfully manages the fixtures lifecycle", func() { It("Successfully manages the fixtures lifecycle", func() {
fixtures := test.NewFixtures(defaultPathToEtcd, defaultPathToApiserver) fixtures := test.NewFixtures(defaultPathToEtcd, defaultPathToApiserver)