Пример #1
0
 def get_queryset(self):
     """
     Return the last five published questions (not including those set to be
     published in the future).
     """
     return Question.objects.filter(
         pub_date__lte=timezone.now()).order_by('-pub_date')[:5]
Пример #2
0
def create_question(question_text, days):
    """
    Creates a question with the given `question_text` and published the
    given number of `days` offset to now (negative for questions published
    in the past, positive for questions that have yet to be published).
    """
    time = timezone.now() + datetime.timedelta(days=days)
    return Question.objects.create(question_text=question_text, pub_date=time)
Пример #3
0
 def test_was_published_recently_with_recent_question(self):
     """
     was_published_recently() should return True for questions whose
     pub_date is within the last day.
     """
     time = timezone.now() - datetime.timedelta(hours=1)
     recent_question = Question(pub_date=time)
     self.assertIs(recent_question.was_published_recently(), True)
Пример #4
0
 def test_was_published_recently_with_old_question(self):
     """
     was_published_recently() should return False for questions whose
     pub_date is older than 1 day.
     """
     time = timezone.now() - datetime.timedelta(days=30)
     old_question = Question(pub_date=time)
     self.assertIs(old_question.was_published_recently(), False)
Пример #5
0
 def test_was_published_recently_with_future_question(self):
     """
     was_published_recently() should return False for questions whose
     pub_date is in the future.
     """
     time = timezone.now() + datetime.timedelta(days=30)
     future_question = Question(pub_date=time)
     self.assertIs(future_question.was_published_recently(), False)
Пример #6
0
 def get_queryset(self):
     """
     Excludes any questions that aren't published yet.
     """
     return Question.objects.filter(pub_date__lte=timezone.now())