From c68ac4fb82b55f4ea6fcc28b4cef5f7ee38db238 Mon Sep 17 00:00:00 2001 From: VG Date: Mon, 11 Apr 2016 17:53:55 +0200 Subject: Auto-commit on 6d1dbe8495b5fafbc5f50d80268d0ca5b7b097be --- tests/tests.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tests/tests.py (limited to 'tests') 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() -- cgit v1.2.3