Files
theHarvester/tests/discovery/test_linkedin_links.py
T
2019-09-07 03:35:59 +00:00

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()