def test_format_days(self):
		cal = Month(2, 1990)
		expected = ["  ","  ","  ","  "," 1"," 2"," 3"," 4"," 5"," 6"," 7"," 8"," 9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28"]
		self.assertEqual(expected, cal.format_days())
示例#2
0
 def days_array(self, month):
     cal = Month(month, self.year)
     days_array = cal.format_days()
     return days_array