annotate bns_website/reviews/tests.py @ 79:548b9e61bd64

Updated bands.json to include "asset_prefix" tags for all the bands. Incorporated all the small images from Ferenc into the bands slideshow. Went through and crushed all the large images to fit within 800x600. Make sure to "manage.py loaddata bands.json" after picking this up.
author Chris Ridgway <ckridgway@gmail.com>
date Fri, 25 Nov 2011 16:54:59 -0600
parents 5992b6b1bcd2
children
rev   line source
ckridgway@16 1 """
ckridgway@34 2 Reviews application view tests.
ckridgway@16 3
ckridgway@16 4 """
ckridgway@34 5 from django.test import TestCase
ckridgway@34 6 from django.core.urlresolvers import reverse
ckridgway@16 7
ckridgway@16 8
ckridgway@34 9 class ViewTest(TestCase):
ckridgway@16 10
bgneal@35 11 def test_reviews_list(self):
ckridgway@16 12 """
bgneal@35 13 Tests the reviews page to ensure it displays without errors.
ckridgway@34 14
ckridgway@16 15 """
ckridgway@34 16 response = self.client.get(reverse('reviews'))
ckridgway@34 17 self.assertEqual(response.status_code, 200)
ckridgway@34 18 self.assertTemplateUsed(response, 'reviews/review_list.html')