mirror of
https://github.com/containers/podman.git
synced 2025-09-18 07:51:22 +08:00
19 lines
284 B
Go
19 lines
284 B
Go
package bindings_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func TestTest(t *testing.T) {
|
|
if testing.Verbose() {
|
|
logrus.SetLevel(logrus.DebugLevel)
|
|
}
|
|
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Test Suite")
|
|
}
|