diff options
| author | Cody Logan <cody@lokken.dev> | 2023-11-08 12:00:45 -0800 |
|---|---|---|
| committer | Cody Logan <cody@lokken.dev> | 2023-11-08 12:00:45 -0800 |
| commit | ecaa8a2d019cef5a83a8dc0ed1d4ad5c9fc81a72 (patch) | |
| tree | 571b803162477b01ff4df5776cfe7972cc216c40 /tests/test_logging.py | |
| parent | e8da17d8c6b7fd879e196ae425b8e62c78e579fe (diff) | |
| download | wikiget-ecaa8a2d019cef5a83a8dc0ed1d4ad5c9fc81a72.tar.gz wikiget-ecaa8a2d019cef5a83a8dc0ed1d4ad5c9fc81a72.zip | |
Add and refine docstrings in tests folder.
Diffstat (limited to 'tests/test_logging.py')
| -rw-r--r-- | tests/test_logging.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_logging.py b/tests/test_logging.py index 5d3aa4c..2fd95cd 100644 --- a/tests/test_logging.py +++ b/tests/test_logging.py @@ -15,6 +15,8 @@ # You should have received a copy of the GNU General Public License # along with Wikiget. If not, see <https://www.gnu.org/licenses/>. +"""Define tests related to the wikiget.logging module.""" + import logging from pathlib import Path @@ -25,6 +27,8 @@ from wikiget.wikiget import parse_args class TestLogging: + """Define tests related to wikiget.logging.configure_logging and FileLogAdapter.""" + logger = logging.getLogger() def test_custom_log_adapter(self, caplog: pytest.LogCaptureFixture) -> None: |
