Example #1
0
 def test_trip_is_in_the_past_with_past_trip(self):
     """
     is_in_the_past() returns True for trips whose start_date is in the past
     """
     date = timezone.now().date() - datetime.timedelta(days=1)
     future_trip = Trip(start_date=date)
     self.assertIs(future_trip.is_in_the_past(), True)
Example #2
0
 def test_trip_is_in_the_past_with_today_trip(self):
     """
     is_in_the_past() returns False for trips whose start_date is today
     or in the future
     """
     date = timezone.now().date()
     future_trip = Trip(start_date=date)
     self.assertIs(future_trip.is_in_the_past(), False)