test_formatdate(): Don't do the localtime test if we don't have

strptime() -- I'm too lazy to code it otherwise.
This commit is contained in:
Barry Warsaw 2001-11-09 19:30:58 +00:00
parent 114486701a
commit 7edd71a9f5
1 changed files with 12 additions and 10 deletions

View File

@ -924,7 +924,9 @@ class TestMiscellaneous(unittest.TestCase):
gdate = Utils.formatdate(now)
ldate = Utils.formatdate(now, localtime=1)
self.assertEqual(gdate, 'Fri, 09 Nov 2001 17:33:52 -0000')
# It's a little tougher to test for localtime, but we'll try
# It's a little tougher to test for localtime, but we'll try. Skip if
# we don't have strptime().
if hasattr(time, 'striptime'):
gtime = time.strptime(gdate.split()[4], '%H:%M:%S')
ltime = time.strptime(ldate.split()[4], '%H:%M:%S')
zone = ldate.split()[5]