43bc58770d
Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
15 lines
331 B
Python
15 lines
331 B
Python
"""Additional tests for upload_to_ftp task."""
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.unit
|
|
class TestUploadToFtp:
|
|
"""Tests for upload_to_ftp task."""
|
|
|
|
def test_module_imports(self):
|
|
"""Test that the module can be imported."""
|
|
from app.tasks.upload_to_ftp import upload_to_ftp
|
|
|
|
assert callable(upload_to_ftp)
|