aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/libbuild.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/libbuild.go')
-rw-r--r--tests/functional/libbuild.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/functional/libbuild.go b/tests/functional/libbuild.go
deleted file mode 100644
index 860aff9..0000000
--- a/tests/functional/libbuild.go
+++ /dev/null
@@ -1,19 +0,0 @@
-package main
-
-import (
- "database/sql"
-
- _ "acudego"
-)
-
-func main() {
- db, err := sql.Open("acudego", ":memory:")
- if err != nil {
- panic(err)
- }
-
- err = db.Close()
- if err != nil {
- panic(err)
- }
-}