pypilot/tests/test_main.py
2022-06-25 20:28:57 +01:00

19 lines
419 B
Python

#!/usr/bin/env python3
# from app.ip import is_ip_address
# def test_is_ip_address_true() -> None:
# test_query = "1.2.3.4"
# assert is_ip_address(test_query)
# def test_is_ip_address_false_ip() -> None:
# test_query = "256.315.16.23"
# assert not is_ip_address(test_query)
# def test_is_ip_address_false_fqdn() -> None:
# test_query = "google.com"
# assert not is_ip_address(test_query)