ipld-eth-server/pkg/datastore/postgres/postgres_suite_test.go
2018-11-21 10:14:11 -06:00

21 lines
293 B
Go

package postgres_test
import (
"testing"
log "github.com/sirupsen/logrus"
"io/ioutil"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func init() {
log.SetOutput(ioutil.Discard)
}
func TestPostgres(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Postgres Suite")
}