mirror of
https://github.com/lightninglabs/aperture.git
synced 2025-12-19 01:54:20 +01:00
14 lines
253 B
Go
14 lines
253 B
Go
//go:build !test_db_postgres
|
|
// +build !test_db_postgres
|
|
|
|
package aperturedb
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
// NewTestDB is a helper function that creates an SQLite database for testing.
|
|
func NewTestDB(t *testing.T) *SqliteStore {
|
|
return NewTestSqliteDB(t)
|
|
}
|