mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-11-13 13:00:16 +00:00
13 lines
261 B
Python
13 lines
261 B
Python
"""Test network utils."""
|
|
from supervisor.dbus.network.utils import int2ip, ip2int
|
|
|
|
|
|
def test_int2ip():
|
|
"""Test int2ip."""
|
|
assert int2ip(16885952) == "192.168.1.1"
|
|
|
|
|
|
def test_ip2int():
|
|
"""Test ip2int."""
|
|
assert ip2int("192.168.1.1") == 16885952
|