Mercurial > public > bravenewsurf
annotate bns_website/news/tests.py @ 43:9936cae358d9
I removed some unused clutter from the news_list.html template. I moved the date to the title line, which looks a lot better I think. I made the space between articles 2em and added a border at the top of each article. I'm not sure I like it, but it's better I think.
author | Bob Mourlam <bob.mourlam@gmail.com> |
---|---|
date | Mon, 07 Nov 2011 21:22:12 -0600 |
parents | 66a3cafc4548 |
children |
rev | line source |
---|---|
bob@14 | 1 """ |
bob@42 | 2 News Tests |
bob@14 | 3 """ |
bob@14 | 4 |
bob@14 | 5 from django.test import TestCase |
bob@42 | 6 from django.core.urlresolvers import reverse |
bob@14 | 7 |
bob@14 | 8 |
bob@14 | 9 class SimpleTest(TestCase): |
bob@42 | 10 def test_news_list(self): |
bob@42 | 11 response = self.client.get(reverse('news')) |
bob@42 | 12 self.assertEqual(response.status_code, 200) |
bob@42 | 13 self.assertTemplateUsed(response, 'news/news_list.html') |