Library Migration (#31)

This commit is contained in:
Zachary Hampton
2023-09-03 07:29:25 -07:00
committed by GitHub
parent 7efece8fe9
commit 153ac35248
36 changed files with 3604 additions and 1473 deletions

10
tests/test_indeed.py Normal file
View File

@@ -0,0 +1,10 @@
from jobscrape import scrape_jobs
def test_indeed():
result = scrape_jobs(
site_name="indeed",
search_term="software engineer",
)
assert result is not None

View File

@@ -0,0 +1,10 @@
from jobscrape import scrape_jobs
def test_ziprecruiter():
result = scrape_jobs(
site_name="zip_recruiter",
search_term="software engineer",
)
assert result is not None