mirror of
https://github.com/python/cpython.git
synced 2026-05-09 22:20:38 -04:00
gh-69714: Restore the test thrown out by cb0523e67c
This commit is contained in:
@@ -559,11 +559,27 @@ class CalendarTestCase(unittest.TestCase):
|
||||
self.assertEqual(len(local_weekday), 10)
|
||||
self.assertEqual(len(local_weekday_abbr), 3)
|
||||
self.assertGreaterEqual(len(local_month), 10)
|
||||
|
||||
cal = calendar.LocaleTextCalendar(locale='')
|
||||
local_weekday = cal.formatweekday(1, 10)
|
||||
local_month = cal.formatmonthname(2010, 10, 10)
|
||||
self.assertIsInstance(local_weekday, str)
|
||||
self.assertIsInstance(local_month, str)
|
||||
self.assertEqual(len(local_weekday), 10)
|
||||
self.assertGreaterEqual(len(local_month), 10)
|
||||
|
||||
cal = calendar.LocaleHTMLCalendar(locale=None)
|
||||
local_weekday = cal.formatweekday(1)
|
||||
local_month = cal.formatmonthname(2010, 10)
|
||||
self.assertIsInstance(local_weekday, str)
|
||||
self.assertIsInstance(local_month, str)
|
||||
|
||||
cal = calendar.LocaleHTMLCalendar(locale='')
|
||||
local_weekday = cal.formatweekday(1)
|
||||
local_month = cal.formatmonthname(2010, 10)
|
||||
self.assertIsInstance(local_weekday, str)
|
||||
self.assertIsInstance(local_month, str)
|
||||
|
||||
new_october = calendar.TextCalendar().formatmonthname(2010, 10, 10)
|
||||
self.assertEqual(old_october, new_october)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user