diff bns_website/bands/tests/view_tests.py @ 6:48ff23eab86a

Enabled the admin. Created a "bands" app with a band model. Created a generic view to display the bands.
author Brian Neal <bgneal@gmail.com>
date Sat, 29 Oct 2011 17:11:58 -0500
parents
children 5992b6b1bcd2
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bns_website/bands/tests/view_tests.py	Sat Oct 29 17:11:58 2011 -0500
@@ -0,0 +1,18 @@
+"""
+Bands application view tests.
+
+"""
+from django.test import TestCase
+from django.core.urlresolvers import reverse
+
+
+class ViewTest(TestCase):
+
+    def test_home(self):
+        """
+        Tests the home page to ensure it displays without errors.
+
+        """
+        response = self.client.get(reverse('bands'))
+        self.assertEqual(response.status_code, 200)
+        self.assertTemplateUsed(response, 'bands/band_list.html')