(async_get)
| 106 | @pytest.mark.ok |
| 107 | @pytest.mark.asyncio |
| 108 | async def test_async_links(async_get): |
| 109 | r = await async_get() |
| 110 | about = r.html.find('#about', first=True) |
| 111 | |
| 112 | assert len(about.links) == 6 |
| 113 | assert len(about.absolute_links) == 6 |
| 114 | |
| 115 | |
| 116 | @pytest.mark.ok |