mirror of
https://github.com/containrrr/watchtower.git
synced 2025-12-23 18:40:13 +01:00
16 lines
263 B
Go
16 lines
263 B
Go
package registry_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestRegistry(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
logrus.SetOutput(GinkgoWriter)
|
|
RunSpecs(t, "Registry Suite")
|
|
}
|