Shore up some failing tests

We really need to add a bunch of new ones for views that have been added
and/or changed, such as all the people stuff, but fix the response code
here to reflect the new and current reality.

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2015-04-02 09:33:03 -05:00
parent 7d4a6db69f
commit 6897f44fa7

View File

@ -19,13 +19,13 @@ def test_svn(self):
response = self.client.get('/svn/')
self.assertEqual(response.status_code, 200)
def test_developers(self):
def test_developers_old(self):
response = self.client.get('/developers/')
self.assertEqual(response.status_code, 200)
self.assertEqual(response.status_code, 301)
def test_fellows(self):
def test_fellows_old(self):
response = self.client.get('/fellows/')
self.assertEqual(response.status_code, 200)
self.assertEqual(response.status_code, 301)
def test_donate(self):
response = self.client.get('/donate/')