A dummy scraping function that returns dummy HTML content for the URL.
(url)
| 54 | |
| 55 | |
| 56 | async def dummy_scraper(url): |
| 57 | """A dummy scraping function that returns dummy HTML content for the URL.""" |
| 58 | return f"<html>dummy content for {url}</html>" |
| 59 | |
| 60 | |
| 61 | @pytest.fixture |
nothing calls this directly
no outgoing calls
no test coverage detected