HomeHarvest/tests/test_realtor.py

10 lines
212 B
Python
Raw Normal View History

2023-09-15 20:58:54 -07:00
from homeharvest import scrape_property
def test_realtor():
results = [
2023-09-17 13:06:31 -07:00
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])