view bns_website/news/tests.py @ 45:2598bc18b6fb

Shamelessly stole Bob's anchor target method. Fixed CSS for reviews so that the top of the review is not clipped by the navbar.
author Chris Ridgway <ckridgway@gmail.com>
date Wed, 09 Nov 2011 23:18:32 -0600
parents 66a3cafc4548
children
line wrap: on
line source
"""
News Tests
"""

from django.test import TestCase
from django.core.urlresolvers import reverse


class SimpleTest(TestCase):
    def test_news_list(self):
        response = self.client.get(reverse('news'))
        self.assertEqual(response.status_code, 200)
        self.assertTemplateUsed(response, 'news/news_list.html')