mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
16 lines
302 B
Go
16 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
|
||
|
}
|