Deepsource Job: e417c302 #13

Merged
luketainton merged 2 commits from ds/e417c302 into main 2022-07-10 16:07:03 +02:00
Showing only changes of commit e37d1d64ea - Show all commits

View File

@ -1,20 +0,0 @@
#!/usr/bin/env python3
"""MODULE: Provides test cases for app/main.py."""
# 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)