mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-22 00:58:12 +08:00
12 lines
179 B
Python
12 lines
179 B
Python
import pytest
|
|
from django_q import Cluster
|
|
|
|
|
|
@pytest.fixture
|
|
def qworker():
|
|
return Cluster()
|
|
|
|
|
|
def test_worker(qworker):
|
|
assert len(qworker.stable) == qworker.stable_size
|