Ejemplo n.º 1
0
 def test_was_published_recently_with_recent_question(self):
     '''
         should return true if published within 24hrs
     '''
     time = timezone.now() + datetime.timedelta(days=30)
     recent_question = Question(pub_date=time)
     self.assertEqual(recent_question.was_published_recently(), False)
Ejemplo n.º 2
0
 def test_was_published_recently_with_future_question(self):
     '''
         should return false if published in the Future
     '''
     time = timezone.now() + datetime.timedelta(days=30)
     future_question = Question(pub_date=time)
     self.assertEqual(future_question.was_published_recently(), False)
Ejemplo n.º 3
0
 def test_was_published_recently_with_old_question(self):
     '''
         should return false if published more than 24hrs ago
     '''
     time = timezone.now() + datetime.timedelta(days=30)
     old_question = Question(pub_date=time)
     self.assertEqual(old_question.was_published_recently(), False)
Ejemplo n.º 4
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.assertEqual(future_question.was_published_recently(), False)
Ejemplo n.º 5
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.assertEqual(old_question.was_published_recently(), False)
Ejemplo n.º 6
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.assertEqual(recent_question.was_published_recently(), True)
Ejemplo n.º 7
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.assertEqual(future_question.was_published_recently(), False)
Ejemplo n.º 8
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.assertEqual(recent_question.was_published_recently(), True)
Ejemplo n.º 9
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.assertEqual(old_question.was_published_recently(), False)
Ejemplo n.º 10
0
 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)
Ejemplo n.º 11
0
 def test_was_published_recently_with_future_question(self):
     time = timezone.now() + datetime.timedelta(days=30)
     future_question = Question(pub_date=time)
     self.assertIs(future_question.was_published_recently(), False)
Ejemplo n.º 12
0
# import os
#
# from django.conf import settings
# from django_tutorial import settings as django_tutorial
from poll.models import Question
import datetime
from django.utils import timezone
#
# settings.configure(default_settings=django_tutorial, DEBUG=True)
# os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_tutorial.settings')
future_question = Question(pub_date=timezone.now() +
                           datetime.timedelta(days=30))
future_question.was_published_recently()

# def test():
#     future_question = Question(pub_date=timezone.now() + datetime.timedelta(days=30))
#     future_question.was_published_recently()

# if __name__ == "__main__":
#     test()