ipld-eth-server/pkg/transformers/vat_toll/vat_toll_suite_test.go

20 lines
279 B
Go
Raw Normal View History

2018-10-04 19:46:04 +00:00
package vat_toll_test
import (
"testing"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"io/ioutil"
"log"
)
func TestVatToll(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "VatToll Suite")
}
var _ = BeforeSuite(func() {
log.SetOutput(ioutil.Discard)
})