From 356b48827b2a0b63de6fd4044aea214e0090cc33 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 27 Oct 2014 20:58:44 -0700 Subject: [PATCH] command: version tests --- command/version_test.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 command/version_test.go diff --git a/command/version_test.go b/command/version_test.go new file mode 100644 index 000000000..2a645690f --- /dev/null +++ b/command/version_test.go @@ -0,0 +1,11 @@ +package command + +import ( + "testing" + + "github.com/mitchellh/cli" +) + +func TestVersionCommand_implements(t *testing.T) { + var _ cli.Command = &VersionCommand{} +}