HomeHarvest/tests/test_realtor.py

13 lines
246 B
Python
Raw Normal View History

2023-09-15 20:58:54 -07:00
from homeharvest import scrape_property
def test_realtor():
results = [
scrape_property(
location="85281",
site_name="realtor.com"
),
]
2023-09-15 20:58:54 -07:00
assert all([result is not None for result in results])