aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/libbuild.go
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-10-18 17:54:26 -0300
committerEuAndreh <eu@euandre.org>2024-10-20 03:36:18 -0300
commitf00c41fd4e6af8cd0db80c118a3bb4abef09604e (patch)
tree46ad14d55cfe591691cf214076e8aea81edbfe18 /tests/functional/libbuild.go
parent.gitignore: Remove .so (diff)
downloadgolite-f00c41fd4e6af8cd0db80c118a3bb4abef09604e.tar.gz
golite-f00c41fd4e6af8cd0db80c118a3bb4abef09604e.tar.xz
Shoehorn project into default golang skeleton structure
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)
- }
-}