mirror of
https://github.com/reconurge/flowsint.git
synced 2026-05-03 09:59:45 -05:00
feat: python formatter finally working
This commit is contained in:
@@ -1,20 +1,23 @@
|
||||
import re
|
||||
from typing import Dict
|
||||
from app.tools.network.reconcrawl import ReconCrawlTool
|
||||
from tools.network.reconcrawl import ReconCrawlTool
|
||||
|
||||
tool = ReconCrawlTool()
|
||||
|
||||
|
||||
def test_name():
|
||||
assert tool.name() == "reconcrawl"
|
||||
|
||||
|
||||
def test_description():
|
||||
assert tool.description() == "Emails and phone numbers crawler from websites by analyzing their HTML and embedded scripts."
|
||||
|
||||
assert (
|
||||
tool.description()
|
||||
== "Emails and phone numbers crawler from websites by analyzing their HTML and embedded scripts."
|
||||
)
|
||||
|
||||
|
||||
def test_category():
|
||||
assert tool.category() == "Crawler"
|
||||
|
||||
|
||||
|
||||
def test_install():
|
||||
tool.install()
|
||||
assert tool.is_installed() == True
|
||||
|
||||
|
||||
Reference in New Issue
Block a user