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

38 lines
1.1 KiB
Python

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)
class AllProjectsTestCase(TestCase):
def test_accessable(self):
response = self.client.get(reverse('pages:all-projects'))
self.assertEqual(response.status_code, 200)