package events_test | |
import ( | |
. "github.com/onsi/ginkgo" | |
. "github.com/onsi/gomega" | |
"testing" | |
"github.com/30x/apid-core" | |
"github.com/30x/apid-core/factory" | |
) | |
var _ = BeforeSuite(func() { | |
apid.Initialize(factory.DefaultServicesFactory()) | |
}) | |
func TestEvents(t *testing.T) { | |
RegisterFailHandler(Fail) | |
RunSpecs(t, "Events Suite") | |
} |