summaryrefslogtreecommitdiff
path: root/zz_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'zz_test.go')
-rw-r--r--zz_test.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/zz_test.go b/zz_test.go
new file mode 100644
index 0000000..f84e5b7
--- /dev/null
+++ b/zz_test.go
@@ -0,0 +1,15 @@
+// 11 december 2015
+
+package ui
+
+import "testing"
+
+func TestIt(t *testing.T) {
+ err := Main(func() {
+ t.Log("we're here")
+ Quit()
+ })
+ if err != nil {
+ t.Fatal(err)
+ }
+}