blob: c643503ac0a2af854c6b3fb4f715682c54947ca0 (
plain)
1
2
3
4
5
6
7
8
|
from uuid import uuid4
from generalresearch.models.network.tool_run import new_tool_run_from_nmap
def test_new_tool_run_from_nmap(nmap_run):
scan_group_id = uuid4().hex
run, scan = new_tool_run_from_nmap(nmap_run, scan_group_id=scan_group_id)
|