/
cryzaqgk
/
test
Обзор
Документация
Войти
/
cryzaqgk
/
test
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
tests/test_preprocess.py
15 строк
339 B
cryzaqgk
final commit
13 дек 2025, 17:38
13 дек 2025, 17:38
b40c83d
Код
Авторство
О чём код?
from src.detector.preprocess import preprocess def test_preprocess_basic(): text = "Hello, WORLD! This is a test." tokens = preprocess(text) assert tokens == ["hello", "world", "this", "test"] def test_preprocess_short_words_removed(): text = "An AI is fun" tokens = preprocess(text) assert tokens == ["fun"]