mirror of
https://github.com/Bunsly/JobSpy.git
synced 2026-03-05 12:04:33 -08:00
package structure
This commit is contained in:
0
python_jobspy/tests/__init__.py
Normal file
0
python_jobspy/tests/__init__.py
Normal file
10
python_jobspy/tests/test_indeed.py
Normal file
10
python_jobspy/tests/test_indeed.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from jobspy import scrape_jobs
|
||||
|
||||
|
||||
def test_indeed():
|
||||
result = scrape_jobs(
|
||||
site_name="indeed",
|
||||
search_term="software engineer",
|
||||
)
|
||||
|
||||
assert result is not None
|
||||
10
python_jobspy/tests/test_ziprecruiter.py
Normal file
10
python_jobspy/tests/test_ziprecruiter.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from jobspy import scrape_jobs
|
||||
|
||||
|
||||
def test_ziprecruiter():
|
||||
result = scrape_jobs(
|
||||
site_name="zip_recruiter",
|
||||
search_term="software engineer",
|
||||
)
|
||||
|
||||
assert result is not None
|
||||
Reference in New Issue
Block a user