mirror of https://github.com/Bunsly/JobSpy
11 lines
201 B
Python
11 lines
201 B
Python
|
from src.jobspy import scrape_jobs
|
||
|
|
||
|
|
||
|
def test_ziprecruiter():
|
||
|
result = scrape_jobs(
|
||
|
site_name="zip_recruiter",
|
||
|
search_term="software engineer",
|
||
|
)
|
||
|
|
||
|
assert result is not None
|