view bns_website/news/tests.py @ 105:f3a275a53bc6

Use a local version of bootstrap 1.4.0. Twitter stopped hosting the version we were using.
author Brian Neal <bgneal@gmail.com>
date Tue, 15 Oct 2013 20:50:29 -0500
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')