def test_bad_html(): bad_html = open(f'{SAMPLE_CONTENT}/Integrations/Vectra_v2/README.md', encoding='utf-8').read() assert '>=' in bad_html res = gen_html_doc(bad_html) assert '>=' not in res
def test_gen_html(): res = gen_html_doc(""" This is line 1 This is line 2 """) assert 'This is line 1\\n' in res