ipld-eth-server/libraries/shared/shared_suite_test.go

20 lines
275 B
Go
Raw Normal View History

package shared_test
2017-10-19 14:22:12 +00:00
import (
"io/ioutil"
"log"
"testing"
2017-10-19 14:22:12 +00:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestShared(t *testing.T) {
2017-10-19 14:22:12 +00:00
RegisterFailHandler(Fail)
RunSpecs(t, "Shared Suite")
2017-10-19 14:22:12 +00:00
}
var _ = BeforeSuite(func() {
log.SetOutput(ioutil.Discard)
})