comparison 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
comparison
equal deleted inserted replaced
5:04991ccaf30c 6:48ff23eab86a
1 """
2 Bands application view tests.
3
4 """
5 from django.test import TestCase
6 from django.core.urlresolvers import reverse
7
8
9 class ViewTest(TestCase):
10
11 def test_home(self):
12 """
13 Tests the home page to ensure it displays without errors.
14
15 """
16 response = self.client.get(reverse('bands'))
17 self.assertEqual(response.status_code, 200)
18 self.assertTemplateUsed(response, 'bands/band_list.html')