theHarvester/tests/discovery/test_linkedin_links.py
2019-09-07 23:50:53 +00:00

17 lines
366 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()
assert list(links)
if __name__ == '__main__':
pytest.main()