view bns_website/reviews/tests.py @ 87:fbeda0f5f3be

Fix for odd Webkit CSS issue when using jPlayer Blue Monday skin and our CSS. All instances of the Future Bugler font on the Listen page were jaggie and smaller than expected.
author Chris Ridgway <ckridgway@gmail.com>
date Sun, 27 Nov 2011 15:06:26 -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')