test: add comprehensive tests across modules to increase coverage above 60%

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-09 11:57:09 +00:00
parent d6e57c8b47
commit c3bfb26c73
32 changed files with 2019 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
"""Additional tests for upload_to_ftp task."""
import pytest
from unittest.mock import patch, MagicMock
@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)