Mercurial > public > bravenewsurf
view bns_website/news/tests.py @ 96:701696a54ec3
Change the list item color to match the rest of the text.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 23 Dec 2011 16:47:52 -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')