Mercurial > public > bravenewsurf
view bns_website/bands/tests/view_tests.py @ 91:4f4e371a723c
Changed to 3-condition BSD license (includes the no-advertising clause).
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 28 Nov 2011 18:56:18 -0600 |
parents | 5992b6b1bcd2 |
children |
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_bands(self): """ Tests the bands 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')