Merge "Add testinfra test for timezone"

This commit is contained in:
Zuul 2018-08-27 16:19:24 +00:00 committed by Gerrit Code Review
commit 973b624427

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"