mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
14 lines
252 B
Go
14 lines
252 B
Go
|
|
//go:build test_db_postgres
|
||
|
|
// +build test_db_postgres
|
||
|
|
|
||
|
|
package loopdb
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
// NewTestDB is a helper function that creates a Postgres database for testing.
|
||
|
|
func NewTestDB(t *testing.T) *PostgresStore {
|
||
|
|
return NewTestPostgresDB(t)
|
||
|
|
}
|