mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-12-27 22:26:00 +00:00
6 lines
173 B
Python
6 lines
173 B
Python
from archivebox.misc.util import download_url
|
|
|
|
def test_download_url_downloads_content():
|
|
text = download_url("https://example.com")
|
|
assert "Example Domain" in text
|