19d7edd530
Signed-off-by: A Gardner <3100188+actgardner@users.noreply.github.com>
12 lines
126 B
Go
12 lines
126 B
Go
// +build cgo
|
|
|
|
package sql
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestSQLite3(t *testing.T) {
|
|
testDB(t, &SQLite3{":memory:"}, false)
|
|
}
|