12 lines
308 B
Python
12 lines
308 B
Python
|
# Test module for win32timezone
|
||
|
|
||
|
import unittest, win32timezone, doctest
|
||
|
|
||
|
class Win32TimeZoneTest(unittest.TestCase):
|
||
|
def testWin32TZ(self):
|
||
|
failed, total = doctest.testmod( win32timezone, verbose = False )
|
||
|
self.failIf( failed )
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|