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

better test descriptions #402

Merged
merged 1 commit into from
Aug 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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