28 lines
1.0 KiB
Python
28 lines
1.0 KiB
Python
"""
|
|
Tests for saved logger levels functionality.
|
|
|
|
The old apply_saved_logger_levels function was part of the custom logger
|
|
implementation that has been replaced by tkinter_logger submodule.
|
|
This functionality may need to be reimplemented if needed.
|
|
"""
|
|
|
|
import logging
|
|
|
|
|
|
def test_placeholder():
|
|
"""Placeholder test while saved levels functionality is being adapted."""
|
|
# The apply_saved_logger_levels function from the old logger
|
|
# is not available in tkinter_logger submodule.
|
|
# If this functionality is needed, it should be reimplemented.
|
|
assert True
|
|
|
|
|
|
# ============================================================================
|
|
# OLD TEST - Archived
|
|
# ============================================================================
|
|
# The original test_apply_saved_logger_levels tested functionality specific
|
|
# to the old pyucc.utils.logger module.
|
|
# This may need to be reimplemented if saving/loading logger levels
|
|
# is required in the application.
|
|
# ============================================================================
|