Skip to content

Commit

Permalink
Add tests for status sub-command
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Scott committed Feb 7, 2020
1 parent 6398fd5 commit f53d273
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions cmd/puma-dev/command_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package main

import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/vektra/neko"
)

func TestStatus(t *testing.T) {
n := neko.Start(t)

n.It("shows the status for all running applications", func() {
assert.Nil(t, status())
})
}

0 comments on commit f53d273

Please sign in to comment.