1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Use prefix naming for ps tests

Signed-off-by: Alexandr Morozov <lk4d4@docker.com>
This commit is contained in:
Alexandr Morozov 2014-09-19 21:49:28 +04:00
parent 6e8c9e7bee
commit 00b82fcab6

View file

@ -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)
@ -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)