view bns_website/reviews/tests.py @ 64:aaac975df679

Tweaking the bxslider's pager CSS. Before, with the images, the numbers > 9 were not centered on their circles. Made an attempt to create circles with CSS instead. The higher numbered ones have kind of a flattened top. Not sure how to fix that right now.
author Brian Neal <bgneal@gmail.com>
date Sat, 19 Nov 2011 16:32:28 -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')