1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/project/pages/tests.py

33 lines
970 B
Python
Raw Normal View History

2016-01-10 16:12:58 +00:00
from django.test import TestCase
from django.core.urlresolvers import reverse
class IndexTestCase(TestCase):
def test_accessable(self):
response = self.client.get(reverse('pages:index'))
self.assertEqual(response.status_code, 200)
class AboutWebsiteTestCase(TestCase):
def test_accessable(self):
response = self.client.get(reverse('pages:about-website'))
self.assertEqual(response.status_code, 200)
class AboutIndexTestCase(TestCase):
def test_accessable(self):
response = self.client.get(reverse('pages:about'))
self.assertEqual(response.status_code, 200)
class Custom404TestCase(TestCase):
def test_accessable(self):
response = self.client.get(reverse('404'))
self.assertEqual(response.status_code, 404)
class NoJavascriptTestCase(TestCase):
def test_accessable(self):
response = self.client.get(reverse('no-js'))
self.assertEqual(response.status_code, 200)