mirror of
https://github.com/netbirdio/dex.git
synced 2026-05-22 18:43:53 -07:00
3d97c59032
Signed-off-by: maksim.nabokikh <max.nabokih@gmail.com>
13 lines
147 B
Go
13 lines
147 B
Go
//go:build cgo
|
|
// +build cgo
|
|
|
|
package sql
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestSQLite3(t *testing.T) {
|
|
testDB(t, &SQLite3{":memory:"}, false, true)
|
|
}
|