Skip to content
This repository has been archived by the owner on Mar 24, 2023. It is now read-only.

Commit

Permalink
better test descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
dexhorthy committed Aug 20, 2018
1 parent 4931a46 commit d4de48a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions integration/base/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ type TestMetadata struct {
SkipCleanup bool `yaml:"skip_cleanup"`
}

func TestCore(t *testing.T) {
func TestShipApp(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "integration")
RunSpecs(t, "ship app ...")
}

var _ = Describe("basic", func() {
var _ = Describe("ship app ...", func() {
dockerClient, err := client.NewEnvClient()
if err != nil {
panic(err)
Expand Down
2 changes: 1 addition & 1 deletion integration/init_app/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ type TestMetadata struct {

func TestInitReplicatedApp(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "integration")
RunSpecs(t, "ship init replicated.app")
}

var _ = Describe("ship init replicated.app/...", func() {
Expand Down
4 changes: 2 additions & 2 deletions integration/init_chart/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ type TestMetadata struct {
SkipCleanup bool `yaml:"skip_cleanup"`
}

func TestInitReplicatedApp(t *testing.T) {
func TestInitChartWithHelmFetch(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "integration")
RunSpecs(t, "ship init <chart> with helm fetch")
}

var _ = Describe("ship init with 'helm fetch'", func() {
Expand Down
6 changes: 3 additions & 3 deletions integration/update/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ type TestMetadata struct {
SkipCleanup bool `yaml:"skip_cleanup"`
}

func TestKustomize(t *testing.T) {
func TestShipUpdate(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "integration")
RunSpecs(t, "ship update")
}

var _ = Describe("basic", func() {
var _ = Describe("ship update", func() {
dockerClient, err := client.NewEnvClient()
if err != nil {
panic(err)
Expand Down

0 comments on commit d4de48a

Please sign in to comment.