コード例 #1
3
ファイル: tests.py プロジェクト: prinnb/cs242-final-project
 	def test_basic_business_hours(self):
 		"""
		Test input to BusinessHours model which deal with choices and timefield
		"""

		test_bus_hours1 = BusinessHours(day = 4, open_time = datetime.time(9,30), close_time = datetime.time(16,00))
		self.assertEqual(test_bus_hours1.get_day_display(), "Friday")
		self.assertEqual(test_bus_hours1.open_time.hour, 9)
		self.assertEqual(test_bus_hours1.close_time.minute, 0)