hass-core/tests/components/ping/const.py
Jan-Philipp Benecke 13504d5fd5
Add consider home interval to ping (#104881)
* Add consider home interval to ping

* Run ruff after rebase

* Fix buggy consider home interval
2023-12-22 14:50:58 +01:00

14 lines
306 B
Python

"""Constants for tests."""
from datetime import timedelta
from icmplib import Host
BINARY_SENSOR_IMPORT_DATA = {
"name": "test2",
"host": "127.0.0.1",
"count": 1,
"scan_interval": 50,
"consider_home": timedelta(seconds=240),
}
NON_AVAILABLE_HOST_PING = Host("192.168.178.1", 10, [])