Mercurial > public > bravenewsurf
view bns_website/videos/tests/view_tests.py @ 79:548b9e61bd64
Updated bands.json to include "asset_prefix" tags for all the bands.
Incorporated all the small images from Ferenc into the bands slideshow.
Went through and crushed all the large images to fit within 800x600.
Make sure to "manage.py loaddata bands.json" after picking this up.
author | Chris Ridgway <ckridgway@gmail.com> |
---|---|
date | Fri, 25 Nov 2011 16:54:59 -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')