mirror of
https://github.com/containrrr/watchtower.git
synced 2025-09-22 05:40:50 +02:00
15 lines
259 B
Go
15 lines
259 B
Go
package registry_test
|
|
|
|
import (
|
|
"github.com/sirupsen/logrus"
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestRegistry(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
logrus.SetOutput(GinkgoWriter)
|
|
RunSpecs(t, "Registry Suite")
|
|
}
|