Update path-help command

This commit is contained in:
Seth Vargo
2017-09-07 22:00:05 -04:00
parent 67611bfcd3
commit d695dbf111
2 changed files with 19 additions and 23 deletions

View File

@@ -28,15 +28,15 @@ func TestPathHelpCommand_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,
},
{