Files
sqlite3/tests/compile/nil/compile_test.go
Nuno Cruces df687a1c54 Tests.
2023-02-20 14:43:19 +00:00

15 lines
201 B
Go

package compile_empty
import (
"testing"
"github.com/ncruces/go-sqlite3"
)
func TestCompile_empty(t *testing.T) {
_, err := sqlite3.Open(":memory:")
if err == nil {
t.Error("want error")
}
}