mirror of
https://github.com/reconurge/flowsint.git
synced 2026-05-02 04:09:32 -05:00
19 lines
515 B
Python
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"
|