Spaces:
Sleeping
Sleeping
File size: 478 Bytes
395651c | 1 2 3 4 5 6 7 8 9 10 11 | """Unit tests that avoid importing the full FastAPI app (no Supabase)."""
from app.ocr_text_merge import build_combined_ocr_preview_draft
def test_build_combined_ocr_preview_draft():
assert build_combined_ocr_preview_draft(None, "only ocr") == "only ocr"
assert build_combined_ocr_preview_draft("", "only ocr") == "only ocr"
assert build_combined_ocr_preview_draft(" caption ", "") == "caption"
assert build_combined_ocr_preview_draft("a", "b") == "a\n\nb"
|