Files
aperture/aperturedb/test_postgres.go
2023-06-14 21:44:17 -07:00

14 lines
256 B
Go

//go:build test_db_postgres
// +build test_db_postgres
package aperturedb
import (
"testing"
)
// NewTestDB is a helper function that creates a Postgres database for testing.
func NewTestDB(t *testing.T) *PostgresStore {
return NewTestPostgresDB(t)
}