Mercurial > public > bravenewsurf
view bns_website/videos/tests/view_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 | a0d3bc630ebd |
children |
line wrap: on
line source
""" View tests for the videos application. """ from django.test import TestCase from django.core.urlresolvers import reverse class NoVideosTest(TestCase): def test_index(self): """ Test that the page displays without any videos in the database. """ response = self.client.get(reverse('videos')) self.assertEqual(response.status_code, 200) self.assertEqual(len(response.context['videos']), 0) self.assertTemplateUsed(response, 'videos/index.html') class SomeVideosTest(TestCase): fixtures = ['playlist.json'] def test_index(self): """ Test that the page displays with videos in the database. """ response = self.client.get(reverse('videos')) self.assertEqual(response.status_code, 200) self.assertEqual(len(response.context['videos']), 50) self.assertTemplateUsed(response, 'videos/index.html')