From 27a27b73880c4e79d23b65c9032264a4a8fca1cd Mon Sep 17 00:00:00 2001 From: Alexandr Morozov Date: Fri, 19 Sep 2014 16:38:21 +0400 Subject: [PATCH] Use prefix naming for create tests Signed-off-by: Alexandr Morozov --- integration-cli/docker_cli_create_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/integration-cli/docker_cli_create_test.go b/integration-cli/docker_cli_create_test.go index db59152406..226a3f5a75 100644 --- a/integration-cli/docker_cli_create_test.go +++ b/integration-cli/docker_cli_create_test.go @@ -9,7 +9,7 @@ import ( ) // Make sure we can create a simple container with some args -func TestDockerCreateArgs(t *testing.T) { +func TestCreateArgs(t *testing.T) { runCmd := exec.Command(dockerBinary, "create", "busybox", "command", "arg1", "arg2", "arg with space") out, _, _, err := runCommandWithStdoutStderr(runCmd) errorOut(err, t, out) @@ -57,7 +57,7 @@ func TestDockerCreateArgs(t *testing.T) { } // Make sure we can set hostconfig options too -func TestDockerCreateHostConfig(t *testing.T) { +func TestCreateHostConfig(t *testing.T) { runCmd := exec.Command(dockerBinary, "create", "-P", "busybox", "echo") out, _, _, err := runCommandWithStdoutStderr(runCmd) errorOut(err, t, out) @@ -95,7 +95,7 @@ func TestDockerCreateHostConfig(t *testing.T) { } // "test123" should be printed by docker create + start -func TestDockerCreateEchoStdout(t *testing.T) { +func TestCreateEchoStdout(t *testing.T) { runCmd := exec.Command(dockerBinary, "create", "busybox", "echo", "test123") out, _, _, err := runCommandWithStdoutStderr(runCmd) errorOut(err, t, out)