mirror of
https://github.com/laramies/theHarvester.git
synced 2026-09-27 03:54:51 +02:00
19 lines
391 B
Python
19 lines
391 B
Python
#!/usr/bin/env python3
|
|
# coding=utf-8
|
|
from theHarvester.discovery import linkedinsearch
|
|
import pytest
|
|
|
|
|
|
class TestGetLinks(object):
|
|
|
|
def test_get_links(self):
|
|
search = linkedinsearch.SearchLinkedin("facebook.com", '100')
|
|
search.process()
|
|
links = search.get_links()
|
|
for link in links:
|
|
print(link)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
pytest.main()
|