ipld-eth-server/pkg/transformers/vat_fold/vat_fold_suite_test.go

20 lines
279 B
Go
Raw Normal View History

2018-10-03 12:08:01 +00:00
package vat_fold_test
import (
"io/ioutil"
"log"
"testing"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestVatFold(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "VatFold Suite")
}
var _ = BeforeSuite(func() {
log.SetOutput(ioutil.Discard)
})