# HG changeset patch # User Bob Mourlam # Date 1320722429 21600 # Node ID 66a3cafc4548e76ddb0039f700c75f36fd3612cc # Parent 9ce9f77d6cde59c5d79b84f91c2eb91701b8de30 I added a basic news test. diff -r 9ce9f77d6cde -r 66a3cafc4548 bns_website/news/tests.py --- 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')