def test_get_hwclock(self): """ Test if it get current hardware clock setting (UTC or localtime) """ self.assertEqual(win_timezone.get_hwclock(), "localtime")
def test_get_hwclock(): """ Test if it get current hardware clock setting (UTC or localtime) """ assert win_timezone.get_hwclock() == "localtime"
def test_get_hwclock(self): ''' Test if it get current hardware clock setting (UTC or localtime) ''' self.assertEqual(win_timezone.get_hwclock(), 'localtime')