1
0
Fork 0
mirror of https://github.com/Luzifer/twitch-bot.git synced 2025-03-17 04:05:59 +00:00
twitch-bot/pkg/database/testhelper.go

15 lines
302 B
Go

package database
import (
"testing"
"github.com/stretchr/testify/require"
)
func GetTestDatabase(t *testing.T) Connector {
dbc, err := New("sqlite", "file::memory:?cache=shared", "encpass")
require.NoError(t, err, "creating database connector")
t.Cleanup(func() { dbc.Close() })
return dbc
}