From fc58acbd7ee281d5dd0189e590449c925eeab20c Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Mon, 4 Sep 2017 23:55:32 -0400 Subject: [PATCH] Remove unused file for tests --- command/base_test.go | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 command/base_test.go diff --git a/command/base_test.go b/command/base_test.go deleted file mode 100644 index b20be62660..0000000000 --- a/command/base_test.go +++ /dev/null @@ -1,14 +0,0 @@ -package command - -import ( - "strings" - "testing" - - "github.com/mitchellh/cli" -) - -func assertNoTabs(tb testing.TB, c cli.Command) { - if strings.ContainsRune(c.Help(), '\t') { - tb.Errorf("%#v help output contains tabs", c) - } -}