9 lines
118 B
Python
9 lines
118 B
Python
|
from gevent.queue import Queue
|
||
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.fixture
|
||
|
def queue():
|
||
|
print('fixture q')
|
||
|
return Queue()
|