diff --git a/tests/discovery/test_linkedin_links.py b/tests/discovery/test_linkedin_links.py index c1965221..2dc6f3dc 100644 --- a/tests/discovery/test_linkedin_links.py +++ b/tests/discovery/test_linkedin_links.py @@ -1,13 +1,11 @@ #!/usr/bin/env python3 # coding=utf-8 from theHarvester.discovery import linkedinsearch -from theHarvester.lib import stash import pytest class TestGetLinks(object): - def test_get_links(self): search = linkedinsearch.SearchLinkedin("facebook.com", '100') search.process() @@ -15,5 +13,6 @@ def test_get_links(self): for link in links: print(link) + if __name__ == '__main__': pytest.main()