Mercurial > public > sg101
view bio/tests/form_tests.py @ 638:7940266fc470
Updating store page after getting feedback from the editor's choice vendors.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 16 Feb 2013 17:56:38 -0600 |
parents | 5be850a66dfc |
children |
line wrap: on
line source
""" Form tests for the bio application. """ from django.test import TestCase from bio.forms import EditUserProfileForm class EditUserProfileFormTestCase(TestCase): def test_valid_timezone(self): post_data = {'time_zone': 'US/Central'} form = EditUserProfileForm(post_data) self.assertTrue(form.is_valid()) def test_invalid_timezone(self): post_data = {'time_zone': u'Am\xe9rica/Argentina_/_Buenos_Aires'} form = EditUserProfileForm(post_data) self.assertFalse(form.is_valid()) def test_blank_timezone(self): form = EditUserProfileForm({}) self.assertTrue(form.is_valid())