reconcrawl.py 456 B

1234567891011121314151617181920212223
  1. from tools.network.reconcrawl import ReconCrawlTool
  2. tool = ReconCrawlTool()
  3. def test_name():
  4. assert tool.name() == "reconcrawl"
  5. def test_description():
  6. assert (
  7. tool.description()
  8. == "Emails and phone numbers crawler from websites by analyzing their HTML and embedded scripts."
  9. )
  10. def test_category():
  11. assert tool.category() == "Crawler"
  12. def test_install():
  13. tool.install()
  14. assert tool.is_installed() == True