Mercurial > public > bravenewsurf
view bns_website/news/tests.py @ 68:1d50a0db4f21
- I moved the jplayer files to a jplayer dir under static/js. I thought about moving the flash file to another dir, but thought it'd be best to leave it with the rest of the jplayer files.
- I removed some rogue colons in the music.html template.
author | Bob Mourlam <bob.mourlam@gmail.com> |
---|---|
date | Wed, 23 Nov 2011 09:16:47 -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')