Mercurial > public > sg101
annotate bio/tests/test_forms.py @ 791:0ca691cccf8d
Utilize select_related() for user & user profiles.
This commit also removes the caching of the avatar URL in the
avatar template tag. This is because we are now using select_related,
so we already have the profile & avatar when we get to the tag.
Thus we don't need to waste time querying the cache.
Removed an apparently unused member map template as well.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 23 May 2014 21:52:41 -0500 |
parents | 8789299c75b1 |
children | 164a39d985ef |
rev | line source |
---|---|
bgneal@612 | 1 """ |
bgneal@612 | 2 Form tests for the bio application. |
bgneal@612 | 3 |
bgneal@612 | 4 """ |
bgneal@612 | 5 from django.test import TestCase |
bgneal@612 | 6 |
bgneal@612 | 7 from bio.forms import EditUserProfileForm |
bgneal@612 | 8 |
bgneal@612 | 9 |
bgneal@612 | 10 class EditUserProfileFormTestCase(TestCase): |
bgneal@612 | 11 |
bgneal@612 | 12 def test_valid_timezone(self): |
bgneal@744 | 13 |
bgneal@612 | 14 post_data = {'time_zone': 'US/Central'} |
bgneal@612 | 15 form = EditUserProfileForm(post_data) |
bgneal@612 | 16 self.assertTrue(form.is_valid()) |
bgneal@612 | 17 |
bgneal@612 | 18 def test_invalid_timezone(self): |
bgneal@744 | 19 |
bgneal@612 | 20 post_data = {'time_zone': u'Am\xe9rica/Argentina_/_Buenos_Aires'} |
bgneal@612 | 21 form = EditUserProfileForm(post_data) |
bgneal@612 | 22 self.assertFalse(form.is_valid()) |
bgneal@612 | 23 |
bgneal@612 | 24 def test_blank_timezone(self): |
bgneal@744 | 25 |
bgneal@612 | 26 form = EditUserProfileForm({}) |
bgneal@612 | 27 self.assertTrue(form.is_valid()) |
bgneal@612 | 28 |