예제 #1
0
파일: tests.py 프로젝트: nveiseh/apimedf
 def test_was_published_recently_old_poll(self):
     old_poll = Poll(pub_date=timezone.now() - datetime.timedelta(days=30))
     self.assertEqual(old_poll.was_published_recently(), False)
예제 #2
0
파일: tests.py 프로젝트: nveiseh/apimedf
 def test_was_published_recently_recent(self):
     recent_poll = Poll(pub_date=timezone.now() -
                        datetime.timedelta(hours=1))
     self.assertEqual(recent_poll.was_published_recently(), True,
                      "HORRAY?!")
예제 #3
0
파일: tests.py 프로젝트: nveiseh/apimedf
 def test_was_published_recently_with_future_poll(self):
     #First we create the object we expect to fail
     future_poll = Poll(pub_date=timezone.now() +
                        datetime.timedelta(days=30))
     #Then, we test that object, to see if the object's function returns the correct value
     self.assertEqual(future_poll.was_published_recently(), False)