Coverage for tests / scripts / test_github_comment_utilities.py: 100%
0 statements
« prev ^ index » next coverage.py v7.13.0, created at 2026-04-03 18:53 +0000
« prev ^ index » next coverage.py v7.13.0, created at 2026-04-03 18:53 +0000
1#!/usr/bin/env python3
2"""Tests for GitHub comment utility scripts.
4This file has been refactored to improve organization and maintainability.
5All tests have been moved to specialized test files:
7- test_github_comment_utilities_find.py: Tests for find_comment_with_marker.py
8- test_github_comment_utilities_extract.py: Tests for extract_comment_body.py
9- test_github_comment_utilities_encode.py: Tests for json_encode_body.py
11This file is kept for backward compatibility and future integration tests
12that may span multiple utility scripts.
14Google-style docstrings are used per project standards.
15"""
17# This file intentionally left mostly empty as all tests have been moved
18# to more specific test files for better organization and maintainability.
20# Future tests that span multiple GitHub comment utilities can be added here