Mercurial > public > bravenewsurf
diff bns_website/news/tests.py @ 42:66a3cafc4548
I added a basic news test.
author | Bob Mourlam <bob.mourlam@gmail.com> |
---|---|
date | Mon, 07 Nov 2011 21:20:29 -0600 |
parents | 2de51cc51d3a |
children |
line wrap: on
line diff
--- a/bns_website/news/tests.py Sun Nov 06 22:13:27 2011 -0600 +++ b/bns_website/news/tests.py Mon Nov 07 21:20:29 2011 -0600 @@ -1,16 +1,13 @@ """ -This file demonstrates writing tests using the unittest module. These will pass -when you run "manage.py test". - -Replace this with more appropriate tests for your application. +News Tests """ from django.test import TestCase +from django.core.urlresolvers import reverse class SimpleTest(TestCase): - def test_basic_addition(self): - """ - Tests that 1 + 1 always equals 2. - """ - self.assertEqual(1 + 1, 2) + def test_news_list(self): + response = self.client.get(reverse('news')) + self.assertEqual(response.status_code, 200) + self.assertTemplateUsed(response, 'news/news_list.html')