Bot & Automation

Activity Reminder Bot

/root/hermes-projects/Activity Reminder Bot

tests/test_sheet_cleanup_guards.py text
from activity_reminder_bot.services.sheets import GoogleSheetsReminderRepository


def test_non_data_rows_are_detected() -> None:
    repository = GoogleSheetsReminderRepository()

    assert repository._is_non_data_row([])
    assert repository._is_non_data_row(["", "", ""])
    assert repository._is_non_data_row(["ID", "User ID"])
    assert not repository._is_non_data_row(["REM-1234", "123", "User"])