Nigerian_languages / tests /test_processing.py
Gabriel Okiri
Initial commit
4bb9d41
raw
history blame contribute delete
233 Bytes
import pytest
from app.utils.data_preprocessing import preprocess_text
def test_preprocess_text():
text = " Sample text with spaces "
processed = preprocess_text(text)
assert processed == "Sample text with spaces"