2021-04-24 15:42:31 +02:00
|
|
|
package container_test
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
2025-03-30 10:02:16 +02:00
|
|
|
. "github.com/onsi/ginkgo/v2"
|
2021-04-24 15:42:31 +02:00
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestContainer(t *testing.T) {
|
|
|
|
|
RegisterFailHandler(Fail)
|
|
|
|
|
RunSpecs(t, "Container Suite")
|
|
|
|
|
}
|