Files
flowsint/flowsint-transforms/tests/tools/network/whoxy.py
2025-08-22 23:27:24 +02:00

19 lines
515 B
Python

from tools.network.whoxy import WhoxyTool
tool = WhoxyTool()
def test_name():
assert tool.name() == "whoxy"
def test_description():
assert (
tool.description()
== "The WHOIS API returns consistent and well-structured WHOIS data in XML & JSON format. Returned data contain parsed WHOIS fields that can be easily understood. Along with WHOIS API, Whoxy also offer WHOIS History API and Reverse WHOIS API."
)
def test_category():
assert tool.category() == "Network intelligence"