mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00

* Add ErrLostSync to report lost of sync when de-mux'ing stream * Add logus.SetLevel(logrus.DebugLevel) when `go test -v` given * Add context to debugging messages Signed-off-by: Jhon Honce <jhonce@redhat.com>
19 lines
289 B
Go
19 lines
289 B
Go
package test_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")
|
|
}
|