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()
}
}