Sign in
edge
/
third_party
/
Masterminds
/
glide
/
0ffb088a332c6f4c1e1574e59a6986d7611d38e4
/
.
/
glide_test.go
blob: 9e0a8383c9bb6d3780c98ea579bce4e5265dce37 [
file
] [
log
] [
blame
]
package main
import (
"testing"
"github.com/Masterminds/cookoo"
)
func TestCommandsNonEmpty(t *testing.T) {
_, router, ctx := cookoo.Cookoo()
commands := commands(ctx, router)
if len(commands) == 0 {
t.Fail()
}
}