mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
bpo-46484:Add test for Calendar.iterweekdays (GH-30825)
This commit is contained in:
parent
d1b1c885d8
commit
48269ea9fd
2 changed files with 9 additions and 0 deletions
|
@ -619,6 +619,14 @@ class CalendarTestCase(unittest.TestCase):
|
|||
self.assertEqual(days[0][1], firstweekday)
|
||||
self.assertEqual(days[-1][1], (firstweekday - 1) % 7)
|
||||
|
||||
def test_iterweekdays(self):
|
||||
week0 = list(range(7))
|
||||
for firstweekday in range(7):
|
||||
cal = calendar.Calendar(firstweekday)
|
||||
week = list(cal.iterweekdays())
|
||||
expected = week0[firstweekday:] + week0[:firstweekday]
|
||||
self.assertEqual(week, expected)
|
||||
|
||||
|
||||
class MonthCalendarTestCase(unittest.TestCase):
|
||||
def setUp(self):
|
||||
|
|
|
@ -1886,6 +1886,7 @@ Jacob Walls
|
|||
Kevin Walzer
|
||||
Rodrigo Steinmuller Wanderley
|
||||
Dingyuan Wang
|
||||
Jiahua Wang
|
||||
Ke Wang
|
||||
Liang-Bo Wang
|
||||
Greg Ward
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue