summaryrefslogtreecommitdiffstats
path: root/tests/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tests.py')
-rw-r--r--tests/tests.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/tests.py b/tests/tests.py
new file mode 100644
index 0000000..7b5ec03
--- /dev/null
+++ b/tests/tests.py
@@ -0,0 +1,27 @@
+'''
+This file tests basic working of the implementation such as:
+
+- PersistentQueue
+- Server protocol
+
+'''
+import asyncio
+import ../src/wqueue2
+
+class TestFileQueue:
+
+ def setup(self):
+ loop = asyncio.new_event_loop()
+ asyncio.set_event_loop(loop)
+ self.pq = PersistentQueue()
+
+ def teardown(self):
+ asyncio.set_event_loop(None)
+
+ def test_reload_from_filename():
+ self.pq.
+
+
+
+ def test_persistent_queue():
+ pq = PersistentQueue()