Mercurial > public > bravenewsurf
view bns_website/core/tests/view_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 | a0d3bc630ebd |
children |
line wrap: on
line source
""" Core (non-application specific) view tests. """ from django.test import TestCase from django.core.urlresolvers import reverse class ViewTest(TestCase): def test_home(self): """ Tests the home page to ensure it displays without errors. """ response = self.client.get(reverse('home')) self.assertEqual(response.status_code, 200) self.assertTemplateUsed(response, 'home.html') def test_music(self): """ Tests the music page to ensure it displays without errors. """ response = self.client.get(reverse('music')) self.assertEqual(response.status_code, 200) self.assertTemplateUsed(response, 'music.html') def test_buy(self): """ Tests the buy page to ensure it displays without errors. """ response = self.client.get(reverse('buy')) self.assertEqual(response.status_code, 200) self.assertTemplateUsed(response, 'buy.html')