示例#1
0
 def test_maps_enrollment_date_to_event(self):
     now = datetime.now() 
     self.row['enrollment_date'] = now
     assert Mapper.to_event(self.row).enrollment_date == now
示例#2
0
 def test_maps_date_to_event(self):
     now = datetime.now() 
     self.row['date'] = now
     assert Mapper.to_event(self.row).date == now
示例#3
0
 def test_notification_status_to_event(self):
     self.row['notification_sent'] = True
     assert Mapper.to_event(self.row).notification_sent == True
示例#4
0
 def test_maps_title_to_event(self):
     self.row['title'] = 'Cool event'
     assert Mapper.to_event(self.row).title == 'Cool event'
示例#5
0
 def test_maps_id_to_event(self):
     self.row['id'] = '*****@*****.**'
     assert Mapper.to_event(self.row).id == '*****@*****.**'