Fix indent in test

This commit is contained in:
sosokker 2023-09-05 20:17:33 +07:00
parent 956869207f
commit 380201e020

View File

@ -17,25 +17,24 @@ class QuestionModelTests(TestCase):
future_question = Question(pub_date=time) future_question = Question(pub_date=time)
self.assertIs(future_question.was_published_recently(), False) self.assertIs(future_question.was_published_recently(), False)
def test_was_published_recently_with_old_question(self):
def test_was_published_recently_with_old_question(self): """
""" was_published_recently() returns False for questions whose pub_date
was_published_recently() returns False for questions whose pub_date is older than 1 day.
is older than 1 day. """
""" time = timezone.now() - datetime.timedelta(days=1, seconds=1)
time = timezone.now() - datetime.timedelta(days=1, seconds=1) old_question = Question(pub_date=time)
old_question = Question(pub_date=time) self.assertIs(old_question.was_published_recently(), False)
self.assertIs(old_question.was_published_recently(), False)
def test_was_published_recently_with_recent_question(self): def test_was_published_recently_with_recent_question(self):
""" """
was_published_recently() returns True for questions whose pub_date was_published_recently() returns True for questions whose pub_date
is within the last day. is within the last day.
""" """
time = timezone.now() - datetime.timedelta(hours=23, minutes=59, seconds=59) time = timezone.now() - datetime.timedelta(hours=23, minutes=59, seconds=59)
recent_question = Question(pub_date=time) recent_question = Question(pub_date=time)
self.assertIs(recent_question.was_published_recently(), True) self.assertIs(recent_question.was_published_recently(), True)
def create_question(question_text, days): def create_question(question_text, days):