"""Lambda test module.""" from unittest.mock import patch from app import handler @patch('app.SyncContractProcessor') def test_handler(mock_processor, mock_event): """Test handler function.""" result = handler(mock_event, None) assert result == {'status': 'OK'} mock_processor.assert_called_once_with(mock_event)