ipld-eth-server/pkg/datastore/postgres/postgres_suite_test.go

21 lines
266 B
Go
Raw Normal View History

package postgres_test
2017-10-19 14:22:12 +00:00
import (
"testing"
"io/ioutil"
"log"
2017-10-19 14:22:12 +00:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func init() {
log.SetOutput(ioutil.Discard)
}
func TestPostgres(t *testing.T) {
2017-10-19 14:22:12 +00:00
RegisterFailHandler(Fail)
RunSpecs(t, "Postgres Suite")
2017-10-19 14:22:12 +00:00
}