diff --git a/testinfra/test_base.py b/testinfra/test_base.py index ed4380f56f..d5540e0bb6 100644 --- a/testinfra/test_base.py +++ b/testinfra/test_base.py @@ -86,3 +86,8 @@ def test_snmp(host): service = host.service("snmpd") assert service.is_running assert service.is_enabled + + +def test_timezone(host): + tz = host.check_output('date +%Z') + assert tz == "UTC"