-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Tom Scott
committed
Feb 7, 2020
1 parent
6398fd5
commit f53d273
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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()) | ||
}) | ||
} |