mirror of
https://github.com/containrrr/watchtower.git
synced 2024-12-06 19:26:27 +01:00
d38e52b5c6
* test: add missing container test suite * fix broken tests * fix: remove duplicate merge artifact Co-authored-by: Simon Aronsson <simme@arcticbit.se>
14 lines
200 B
Go
14 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")
|
|
}
|