Files
django-test/apps/base/tests/test_urls.py
Jens Kleineheismann d584de697a
Some checks failed
buildbot/django-test-test-python2 Build done.
buildbot/django-test-test-python3 Build done.
UPD: improved tests.
2019-10-24 14:12:23 +02:00

11 lines
310 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.test import SimpleTestCase
from django.urls import reverse
class UrlsTestCase(SimpleTestCase):
def test_root_reverse(self):
response = self.client.get(reverse('root'))
self.assertEqual(response.status_code, 200)