Update delete command

This commit is contained in:
Seth Vargo
2017-09-07 21:59:06 -04:00
parent 36eccfb424
commit 6b75e6e2bf
2 changed files with 13 additions and 15 deletions

View File

@@ -28,15 +28,15 @@ func TestDeleteCommand_Run(t *testing.T) {
code int
}{
{
"empty",
nil,
"Missing PATH!",
"not_enough_args",
[]string{},
"Not enough arguments",
1,
},
{
"slash",
[]string{"/"},
"Missing PATH!",
"too_many_args",
[]string{"foo", "bar"},
"Too many arguments",
1,
},
}