blob: 727fef93f1d3c4c44591ae66accd8506af5d04ae (
plain)
1
2
3
4
5
6
7
8
9
10
|
from sandcrawler.ingest_html import *
def test_html_extract_ojs3() -> None:
with open('tests/files/first_monday_ojs3_fulltext.html', 'rb') as f:
ojs3_html = f.read()
fulltext = html_extract_body_teixml(ojs3_html)
assert fulltext['status'] == 'success'
|