Create testapp.py
diff --git a/testapp.py b/testapp.py
new file mode 100644
index 0000000..c5908d6
--- /dev/null
+++ b/testapp.py
@@ -0,0 +1,10 @@
+#!/usr/bin/env python3
+""" Super simple test application for pipservice installer """
+import certifi    # Testing pipenv installed the mods
+import netaddr    # Testing more...
+import time
+
+print("This works!")
+while True:
+    time.sleep(60)
+    print("test app still works!")