Skip to content

Commit

Permalink
Use prefix naming for ps tests
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandr Morozov <lk4d4@docker.com>
  • Loading branch information
LK4D4 committed Sep 19, 2014
1 parent 6e8c9e7 commit 00b82fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration-cli/docker_cli_ps_test.go
Expand Up @@ -7,7 +7,7 @@ import (
"time"
)

func TestListContainers(t *testing.T) {
func TestPsListContainers(t *testing.T) {
runCmd := exec.Command(dockerBinary, "run", "-d", "busybox", "top")
out, _, err := runCommandWithOutput(runCmd)
errorOut(err, t, out)
Expand Down Expand Up @@ -201,7 +201,7 @@ func assertContainerList(out string, expected []string) bool {
return true
}

func TestListContainersSize(t *testing.T) {
func TestPsListContainersSize(t *testing.T) {
name := "test_size"
runCmd := exec.Command(dockerBinary, "run", "--name", name, "busybox", "sh", "-c", "echo 1 > test")
out, _, err := runCommandWithOutput(runCmd)
Expand Down

0 comments on commit 00b82fc

Please sign in to comment.