Created
December 18, 2017 12:40
-
-
Save solidpple/3f1c50026aa98e3ded047675efdeded7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def test_was_published_recently_with_old_question(self): | |
""" | |
was_published_recently() returns False for questions whose pub_date | |
is older than 1 day. | |
""" | |
time = timezone.now() - datetime.timedelta(days=1, seconds=1) | |
old_question = Question(pub_date=time) | |
self.assertIs(old_question.was_published_recently(), False) | |
def test_was_published_recently_with_recent_question(self): | |
""" | |
was_published_recently() returns True for questions whose pub_date | |
is within the last day. | |
""" | |
time = timezone.now() - datetime.timedelta(hours=23, minutes=59, seconds=59) | |
recent_question = Question(pub_date=time) | |
self.assertIs(recent_question.was_published_recently(), True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment