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