Ejemplo n.º 1
0
 def test_was_published_recently_with_old_note(self):
     """
     was_published_recently() returns False for notes whose pub_date
     is older than 1 day.
     """
     time = timezone.now() - datetime.timedelta(days=1, seconds=1)
     old_note = Note(pub_date=time)
     self.assertIs(old_note.was_published_recently(), False)
Ejemplo n.º 2
0
 def test_was_published_recently_with_future_note(self):
     """
     was_published_recently() returns False for notes whose pub_date
     is in the future.
     """
     time = timezone.now() + datetime.timedelta(days=30)
     future_note = Note(pub_date=time)
     self.assertIs(future_note.was_published_recently(), False)
Ejemplo n.º 3
0
 def test_was_published_recently_with_recent_note(self):
     """
     was_published_recently() returns True for notes whose pub_date
     is within the last day.
     """
     time = timezone.now() - datetime.timedelta(
         hours=23, minutes=59, seconds=59)
     recent_note = Note(pub_date=time)
     self.assertIs(recent_note.was_published_recently(), True)
Ejemplo n.º 4
0
 def test_was_published_recently(self):
     time = timezone.now() + timezone.timedelta(days=30)
     future_note = Note(pub_date=time)
     self.assertEqual(future_note.was_published_recently(), False)