view bns_website/bands/tests/view_tests.py @ 98:4de34a1446a0

Fix video page. Was only displaying 2 videos in playlist. YouTube must have changed something? In any event, it is easier to use now. Can just use an <iframe> and give it a list of videos now.
author Brian Neal <bgneal@gmail.com>
date Fri, 13 Jul 2012 21:36:53 -0500
parents 5992b6b1bcd2
children
line wrap: on
line source
"""
Bands application view tests.

"""
from django.test import TestCase
from django.core.urlresolvers import reverse


class ViewTest(TestCase):

    def test_bands(self):
        """
        Tests the bands page to ensure it displays without errors.

        """
        response = self.client.get(reverse('bands'))
        self.assertEqual(response.status_code, 200)
        self.assertTemplateUsed(response, 'bands/band_list.html')