summaryrefslogtreecommitdiff
path: root/tests/main.go
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-08-08 18:48:25 -0300
committerEuAndreh <eu@euandre.org>2024-08-08 18:48:25 -0300
commit81ebc234678af08692aad7f3c2d1128f6c2f75c4 (patch)
treefc5ba312b456d2b2ef20424572d9ca4a9a76edc8 /tests/main.go
parentrm go.mod (diff)
downloadbinder-81ebc234678af08692aad7f3c2d1128f6c2f75c4.tar.gz
binder-81ebc234678af08692aad7f3c2d1128f6c2f75c4.tar.xz
Makefile: Use "go tool {compile,link}" over "go {build,test}"
Diffstat (limited to '')
-rw-r--r--tests/main.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/main.go b/tests/main.go
new file mode 100644
index 0000000..846bc7e
--- /dev/null
+++ b/tests/main.go
@@ -0,0 +1,7 @@
+package main
+
+import "binder"
+
+func main() {
+ binder.MainTest()
+}