Write unit test for date in new refund
This commit is contained in:
parent
5958f182c9
commit
5b80ed4371
1 changed files with 24 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue