()
| 132 | |
| 133 | @pytest.mark.ok |
| 134 | def test_html_loading(): |
| 135 | doc = """<a href='https://httpbin.org'>""" |
| 136 | html = HTML(html=doc) |
| 137 | |
| 138 | assert 'https://httpbin.org' in html.links |
| 139 | assert isinstance(html.raw_html, bytes) |
| 140 | assert isinstance(html.html, str) |
| 141 | |
| 142 | |
| 143 | @pytest.mark.ok |
nothing calls this directly
no test coverage detected
searching dependent graphs…