From 1525d5660f58de239a2e15f35f423374ca51ee36 Mon Sep 17 00:00:00 2001 From: Tamer Tas Date: Mon, 10 Aug 2015 09:41:14 +0300 Subject: [PATCH] Rename sys.Executor tests --- pkg/sys/executor_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/sys/executor_test.go b/pkg/sys/executor_test.go index dc31692..a5ae08b 100644 --- a/pkg/sys/executor_test.go +++ b/pkg/sys/executor_test.go @@ -8,7 +8,7 @@ import ( "github.com/tmrts/flamingo/pkg/sys" ) -func TestCommandExecution(t *testing.T) { +func TestExecutesACommand(t *testing.T) { Convey("Given a command and a list of arguments", t, func() { cmd, args := "echo", []string{"-n", "fi fye fo fum"} @@ -21,7 +21,7 @@ func TestCommandExecution(t *testing.T) { }) } -func TestExecutingACommandWithErrors(t *testing.T) { +func TestExecutesAnInvalidCommand(t *testing.T) { Convey("Given an erroneous command", t, func() { cmd := "tHiScOmMaNdDoEsNtExIsT"