mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-11 21:49:13 +00:00
16 lines
228 B
Go
16 lines
228 B
Go
package compile
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ncruces/go-sqlite3"
|
|
)
|
|
|
|
func TestCompile_missing(t *testing.T) {
|
|
sqlite3.Path = "sqlite3.wasm"
|
|
_, err := sqlite3.Open(":memory:")
|
|
if err == nil {
|
|
t.Error("want error")
|
|
}
|
|
}
|