Mercurial > public > sg101
view bio/tests/test_forms.py @ 831:0f9c014c8adc
Bandmap: don't need to send URL to javascript client.
Also tweaking note as I am noticing it isn't getting rendered
correctly on all bands for some reason.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 28 Sep 2014 20:42:57 -0500 |
parents | 8789299c75b1 |
children | 164a39d985ef |
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())