aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/golite.go8
-rw-r--r--tests/main.go7
2 files changed, 15 insertions, 0 deletions
diff --git a/tests/golite.go b/tests/golite.go
new file mode 100644
index 0000000..1988f6e
--- /dev/null
+++ b/tests/golite.go
@@ -0,0 +1,8 @@
+package golite
+
+import (
+)
+
+
+func MainTest() {
+}
diff --git a/tests/main.go b/tests/main.go
new file mode 100644
index 0000000..f8a5b6f
--- /dev/null
+++ b/tests/main.go
@@ -0,0 +1,7 @@
+package main
+
+import "golite"
+
+func main() {
+ golite.MainTest()
+}