Files
podman/pkg/bindings/test/test_suite_test.go
Jhon Honce b6113e2b9e WIP V2 attach bindings and test
* 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>
2020-05-13 11:49:17 -07:00

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")
}