From faec087e20bf5fb4a407d965bcfd3674ca6a3a12 Mon Sep 17 00:00:00 2001 From: David Shrewsbury Date: Mon, 27 Aug 2018 10:45:31 -0400 Subject: [PATCH] Add testinfra test for timezone Change-Id: Ib02d54eb5b188928906670607d4d2bff80a384f2 --- testinfra/test_base.py | 5 +++++ 1 file changed, 5 insertions(+) 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"