Add testinfra test for timezone

Change-Id: Ib02d54eb5b188928906670607d4d2bff80a384f2
This commit is contained in:
David Shrewsbury 2018-08-27 10:45:31 -04:00
parent dceb09d886
commit faec087e20
1 changed files with 5 additions and 0 deletions

View File

@ -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"