Mercurial > public > bravenewsurf
view bns_website/core/tests/view_tests.py @ 28:20dc7be59c85
Addresses three items from #2, comment #2.
1. Made review title a mandatory field
3. Changed reviews display to use Bootstrap <blockquote> instead of <cite>
4. Ordering of reviews is now reverse chronological
see ticket #2
author | Chris Ridgway <ckridgway@gmail.com> |
---|---|
date | Thu, 03 Nov 2011 23:00:34 -0500 |
parents | 01740aa4a6b9 |
children | a0d3bc630ebd |
line wrap: on
line source
""" Core (non-application specific) 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('home')) self.assertEqual(response.status_code, 200) self.assertTemplateUsed(response, 'home.html') def test_music(self): """ Tests the music page to ensure it displays without errors. """ response = self.client.get(reverse('music')) self.assertEqual(response.status_code, 200) self.assertTemplateUsed(response, 'music.html') def test_video(self): """ Tests the video page to ensure it displays without errors. """ response = self.client.get(reverse('videos')) self.assertEqual(response.status_code, 200) self.assertTemplateUsed(response, 'videos.html') def test_buy(self): """ Tests the buy page to ensure it displays without errors. """ response = self.client.get(reverse('buy')) self.assertEqual(response.status_code, 200) self.assertTemplateUsed(response, 'buy.html')