mirror of
https://github.com/containrrr/watchtower.git
synced 2025-09-21 21:30:48 +02:00

* test: add missing container test suite * fix broken tests * fix: remove duplicate merge artifact Co-authored-by: Simon Aronsson <simme@arcticbit.se>
13 lines
200 B
Go
13 lines
200 B
Go
package container_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestContainer(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Container Suite")
|
|
}
|