summaryrefslogtreecommitdiff
path: root/jimbrella/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to 'jimbrella/__main__.py')
-rw-r--r--jimbrella/__main__.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/jimbrella/__main__.py b/jimbrella/__main__.py
new file mode 100644
index 0000000..1e658c7
--- /dev/null
+++ b/jimbrella/__main__.py
@@ -0,0 +1,10 @@
+from .database import Database
+
+def test():
+ db = Database("/home/fkfd/p/jimbrella/jimbrella.db.csv")
+ db.take_away(2, "Jim Brella", "1337", "10086")
+ db.give_back(1)
+
+if __name__ == "__main__":
+ test()
+