''' 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): self.pq. def test_save_to_filename(self): pass def test_pass_one_job(self): pass def test_persistent_queue(): pq = PersistentQueue()