aea9c7b5e2
* Separate Repository into multiple Repositories * Use struct scan for transactions * Use struct scan for blocks * Remove unused block repo methods * Update naming * Rename / Cleanup repository related fields
14 lines
197 B
Go
14 lines
197 B
Go
package postgres_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestPostgres(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Postgres Suite")
|
|
}
|