Mercurial > public > bravenewsurf
view bns_website/bands/tests/view_tests.py @ 34:37d9b6b1a097
Added reviews template tag. Fix ordering of reviews. Tweaked the display of the reviews page.
Addresses ticket 2.
author | Chris Ridgway <ckridgway@gmail.com> |
---|---|
date | Sat, 05 Nov 2011 23:53:10 -0500 |
parents | 48ff23eab86a |
children | 5992b6b1bcd2 |
line wrap: on
line source
""" 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')