"""Unit tests for the config of chartmetric_monitor.""" from swf_monitoring.flows.chartmetric_monitor import config def test_tables_to_monitor(monkeypatch): """Test TABLES_TO_MONITOR constant.""" for table_name in config.TABLES_TO_MONITOR: assert config.TABLES_TO_MONITOR[table_name]['db'] assert config.TABLES_TO_MONITOR[table_name]['schema']