Kaydet (Commit) 268a6463 authored tarafından Tim Graham's avatar Tim Graham

Updated was_published_recently() tutorial test to check boundary condition.

üst 23142eea
...@@ -285,7 +285,7 @@ more comprehensively: ...@@ -285,7 +285,7 @@ more comprehensively:
was_published_recently() should return False for questions whose was_published_recently() should return False for questions whose
pub_date is older than 1 day. pub_date is older than 1 day.
""" """
time = timezone.now() - datetime.timedelta(days=30) time = timezone.now() - datetime.timedelta(days=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)
...@@ -294,7 +294,7 @@ more comprehensively: ...@@ -294,7 +294,7 @@ more comprehensively:
was_published_recently() should return True for questions whose was_published_recently() should return True for questions whose
pub_date is within the last day. pub_date is within the last day.
""" """
time = timezone.now() - datetime.timedelta(hours=1) 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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment