/
rnj
/
SuaiTestBot
Обзор
Документация
Войти
/
rnj
/
SuaiTestBot
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
tests/test_utils.py
32 строки
928 B
Dmitriy Pozdeev
init commit
03 июн 2026, 23:58
03 июн 2026, 23:58
110bad2
Код
Авторство
О чём код?
from types import SimpleNamespace from bot.schedule_slots import WEEK_BLUE from bot.utils import escape_md_v2, format_day_schedule, format_lesson_line from database.crud import LessonInfo def test_escape_md_v2_dots(): assert escape_md_v2("02.06.2026") == r"02\.06\.2026" def test_format_lesson_line_weekly(): lesson = SimpleNamespace( slot_number=1, week_type=WEEK_BLUE, day_of_week=0, lesson_type="laboratory", room="101", ) info = LessonInfo( lesson=lesson, teacher_name="Иванов", discipline_name="Физика", ) text = format_lesson_line(info) assert "лаборатор" in text.lower() or "Лаборатор" in text assert r"1 пара" in text or "1 пара" in text def test_format_day_schedule_empty(): text = format_day_schedule("Заголовок", [], "Пусто") assert "Пусто" in text