Mercurial > public > bravenewsurf
view bns_website/news/tests.py @ 89:5e58c3bad4ed
Updated CSS for reviews app so the blockquote, small and a tags don't look so washed out against the new site background.
author | Chris Ridgway <ckridgway@gmail.com> |
---|---|
date | Sun, 27 Nov 2011 15:45:38 -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')