Write unit test for date in new refund

This commit is contained in:
Gabriel Augendre 2018-01-22 07:46:20 +01:00
parent 5958f182c9
commit 5b80ed4371

View file

@ -1,3 +1,25 @@
from django.test import TestCase
import datetime
from django.contrib.auth.models import User
from django.test import TestCase, Client
from django.urls import reverse
class MonthBeforeJanuaryTestCase(TestCase):
@classmethod
def setUpTestData(cls):
cls.username = 'testuser'
cls.password = 'djangooo'
cls.user = User.objects.create_superuser(username=cls.username, email='', password=cls.password)
def test_refund_date_appears_at_creation(self):
c = Client()
c.login(username=self.username, password=self.password)
response = c.get(reverse('new_refund'))
self.assertLess(response.status_code, 300)
print(response.content)
expected_date = datetime.date.today().isoformat()
self.assertIn(expected_date,response.content.decode('utf-8'))
# Create your tests here.