mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-10 23:05:05 +00:00
8 lines
234 B
Python
8 lines
234 B
Python
from prowler.lib.utils.utils import validate_ip_address
|
|
|
|
|
|
class Test_Validate_Ip_Address:
|
|
def test_validate_ip_address(self):
|
|
assert validate_ip_address("88.26.151.198")
|
|
assert not validate_ip_address("Not an IP")
|