Sign in
edge
/
third_party
/
Masterminds
/
glide
/
7833e93fa8594e1fdd0da4a8572841b7d68cf755
/
.
/
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()
}
}