diff options
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: |
