This commit is contained in:
Nuno Cruces
2023-02-20 13:38:03 +00:00
parent 2f5b9837e1
commit df687a1c54
6 changed files with 61 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
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")
}
}