From f9e369bc1bf8b5c715c1ada3b373d40aa8bde7ad Mon Sep 17 00:00:00 2001 From: Tom Scott Date: Sat, 8 Feb 2020 12:41:54 -0500 Subject: [PATCH] Add tests for status sub-command --- cmd/puma-dev/command_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/puma-dev/command_test.go b/cmd/puma-dev/command_test.go index 674e3f09..abca4d0a 100644 --- a/cmd/puma-dev/command_test.go +++ b/cmd/puma-dev/command_test.go @@ -100,3 +100,7 @@ func TestCommand_link_reassignExistingApp(t *testing.T) { assert.Equal(t, fmt.Sprintf("! App '%s' already exists, pointed at '%s'\n", appAlias, appDir1), actual2) } + +func TestCommand_status(t *testing.T) { + assert.Nil(t, status()) +}