Files
dex/storage/sql/sqlite_test.go
T
2020-11-17 17:48:40 -05:00

12 lines
126 B
Go

// +build cgo
package sql
import (
"testing"
)
func TestSQLite3(t *testing.T) {
testDB(t, &SQLite3{":memory:"}, false)
}