Files
DocsGPT/tests/test_celery.py
Siddhant Rai d6c49bdbf0 test: add agent test coverage and standardize test suite (#2051)
- Add 104 comprehensive tests for agent system
- Integrate agent tests into CI/CD pipeline
- Standardize tests with @pytest.mark.unit markers
- Fix cross-platform path compatibility
- Clean up unused imports and dependencies
2025-10-13 14:43:35 +03:00

22 lines
565 B
Python

from unittest.mock import patch
import pytest
from application.celery_init import make_celery
from application.core.settings import settings
@pytest.mark.unit
@patch("application.celery_init.Celery")
def test_make_celery(mock_celery):
app_name = "test_app_name"
celery = make_celery(app_name)
mock_celery.assert_called_once_with(
app_name,
broker=settings.CELERY_BROKER_URL,
backend=settings.CELERY_RESULT_BACKEND,
)
celery.conf.update.assert_called_once_with(settings)
assert celery == mock_celery.return_value