#!/usr/bin/env python3 import sys sys.path.insert(0, '/MASTERFOLDER/Tools/text-polish/src') from src.config import AGGRESSION, CUSTOM_DICTIONARY, MIN_LENGTH # Test that config features work correctly print("AGGRESSION:", AGGRESSION) print("CUSTOM_DICTIONARY:", CUSTOM_DICTIONARY) print("MIN_LENGTH:", MIN_LENGTH) # Test with different values test_cases = [ ("minimal", "custom"), ("moderate", "custom"), ("custom", "minimal") ] for aggression_level, dictionary_type in test_cases: print(f"Aggression: {aggression_level}, Dictionary: {dictionary_type}")