コード例 #1
0
async def test_Queue_get_fail_not_found():
    with pytest.raises(QueueNotFound):
        Queue.get('not_found')
コード例 #2
0
async def test_Queue_get_ok(test_queue):
    assert Queue.get('test_queue') is test_queue