Mercurial > public > bravenewsurf
view bns_website/reviews/tests.py @ 68:1d50a0db4f21
- I moved the jplayer files to a jplayer dir under static/js. I thought about moving the flash file to another dir, but thought it'd be best to leave it with the rest of the jplayer files.
- I removed some rogue colons in the music.html template.
author | Bob Mourlam <bob.mourlam@gmail.com> |
---|---|
date | Wed, 23 Nov 2011 09:16:47 -0600 |
parents | 5992b6b1bcd2 |
children |
line wrap: on
line source
""" Reviews application view tests. """ from django.test import TestCase from django.core.urlresolvers import reverse class ViewTest(TestCase): def test_reviews_list(self): """ Tests the reviews page to ensure it displays without errors. """ response = self.client.get(reverse('reviews')) self.assertEqual(response.status_code, 200) self.assertTemplateUsed(response, 'reviews/review_list.html')