From 2a7587f8bba3cb7e996f7eae424878970afb03ca Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 9 Feb 2026 15:14:40 +0000 Subject: [PATCH] docs: update references to deleted app/utils.py file Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> --- TODO_TESTS.md | 5 +++-- tests/test_coverage_boost.py | 2 +- tests/test_reexports.py | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/TODO_TESTS.md b/TODO_TESTS.md index 0bca0f7c..3ad1a973 100644 --- a/TODO_TESTS.md +++ b/TODO_TESTS.md @@ -30,8 +30,9 @@ This document tracks test coverage improvements for DocuElevate. The goal is to - Test skipping when URL not configured - Test error handling for failed requests -- [x] `app/utils.py` (0% → Still 0%) ⚠️ - - Simple re-export module, coverage is from actual usage +- [x] `app/utils/` package (exports via __init__.py) ✅ + - Package exports tested in test_reexports.py + - Individual module coverage from actual usage - [x] `app/frontend.py` (0% → 100%) ✅ - Simple re-export module, test imports work diff --git a/tests/test_coverage_boost.py b/tests/test_coverage_boost.py index f2b27073..d49dc1c8 100644 --- a/tests/test_coverage_boost.py +++ b/tests/test_coverage_boost.py @@ -5,7 +5,7 @@ from unittest.mock import patch, MagicMock @pytest.mark.unit class TestUtilsCompat: - """Tests for app/utils.py backward compatibility module.""" + """Tests for app.utils package exports.""" def test_imports_hash_file(self): """Test that hash_file can be imported from utils.""" diff --git a/tests/test_reexports.py b/tests/test_reexports.py index 74d1895a..dd42fbcc 100644 --- a/tests/test_reexports.py +++ b/tests/test_reexports.py @@ -10,7 +10,7 @@ import pytest @pytest.mark.unit class TestUtilsReexports: - """Test that app/utils.py re-exports work correctly""" + """Test that app.utils package exports work correctly""" def test_hash_file_import(self): """Test that hash_file can be imported from app.utils"""