mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 22:19:14 +00:00
23 lines
523 B
Diff
23 lines
523 B
Diff
diff --git a/tests/.gitignore b/tests/.gitignore
|
|
--- a/tests/.gitignore
|
|
+++ b/tests/.gitignore
|
|
@@ -1 +1 @@
|
|
-go.sum
|
|
+*
|
|
diff --git a/tests/tests_test.go b/tests/tests_test.go
|
|
--- a/tests/tests_test.go
|
|
+++ b/tests/tests_test.go
|
|
@@ -7,9 +7,11 @@ import (
|
|
"path/filepath"
|
|
"time"
|
|
|
|
+ _ "github.com/ncruces/go-sqlite3/embed"
|
|
+ sqlite "github.com/ncruces/go-sqlite3/gormlite"
|
|
+
|
|
"gorm.io/driver/mysql"
|
|
"gorm.io/driver/postgres"
|
|
- "gorm.io/driver/sqlite"
|
|
"gorm.io/driver/sqlserver"
|
|
"gorm.io/gorm"
|
|
"gorm.io/gorm/logger"
|