Files
gh-christianlouis-docuelevate/tests/test_upload_email.py
T
2026-02-13 09:10:52 +00:00

15 lines
347 B
Python

"""Tests for app/tasks/upload_to_email.py module."""
import pytest
@pytest.mark.unit
class TestUploadToEmail:
"""Tests for upload_to_email task."""
def test_module_imports(self):
"""Test that the module can be imported."""
from app.tasks.upload_to_email import upload_to_email
assert callable(upload_to_email)