Files
cunicu/cmd/main_suite_test.go
Steffen Vogel f38032fb7c refactor cmd directory structure
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2022-07-27 13:39:18 +02:00

17 lines
253 B
Go

package main_test
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"riasc.eu/wice/pkg/test"
)
func TestSuite(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Main Commands Suite")
}
var _ = test.SetupLogging()