ipld-eth-server/pkg/transformers/shared/shared_suite_test.go

20 lines
301 B
Go
Raw Normal View History

2018-08-09 21:55:02 +00:00
package shared_test
2018-08-07 15:51:34 +00:00
import (
"github.com/sirupsen/logrus"
"io/ioutil"
"testing"
2018-08-07 15:51:34 +00:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
2018-08-09 21:55:02 +00:00
func TestShared(t *testing.T) {
RegisterFailHandler(Fail)
2018-08-09 21:55:02 +00:00
RunSpecs(t, "Shared Suite")
2018-08-07 15:51:34 +00:00
}
var _ = BeforeSuite(func() {
logrus.SetOutput(ioutil.Discard)
})