Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
sqlite_test.go 141 B
//go:build cgo
// +build cgo

package sql

import (
	"testing"
)

func TestSQLite3(t *testing.T) {
	testDB(t, &SQLite3{":memory:"}, false)
}