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