mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Fixed #15837. Consolidated all the locaflavor tests into a single, logical, place (regressiontests/localflavor/).
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16680 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
0
tests/regressiontests/localflavor/za/__init__.py
Normal file
0
tests/regressiontests/localflavor/za/__init__.py
Normal file
29
tests/regressiontests/localflavor/za/tests.py
Normal file
29
tests/regressiontests/localflavor/za/tests.py
Normal file
@@ -0,0 +1,29 @@
|
||||
from django.contrib.localflavor.za.forms import ZAIDField, ZAPostCodeField
|
||||
|
||||
from django.test import SimpleTestCase
|
||||
|
||||
|
||||
class ZALocalFlavorTests(SimpleTestCase):
|
||||
def test_ZAIDField(self):
|
||||
error_invalid = [u'Enter a valid South African ID number']
|
||||
valid = {
|
||||
'0002290001003': '0002290001003',
|
||||
'000229 0001 003': '0002290001003',
|
||||
}
|
||||
invalid = {
|
||||
'0102290001001': error_invalid,
|
||||
'811208': error_invalid,
|
||||
'0002290001004': error_invalid,
|
||||
}
|
||||
self.assertFieldOutput(ZAIDField, valid, invalid)
|
||||
|
||||
def test_ZAPostCodeField(self):
|
||||
error_invalid = [u'Enter a valid South African postal code']
|
||||
valid = {
|
||||
'0000': '0000',
|
||||
}
|
||||
invalid = {
|
||||
'abcd': error_invalid,
|
||||
' 7530': error_invalid,
|
||||
}
|
||||
self.assertFieldOutput(ZAPostCodeField, valid, invalid)
|
||||
Reference in New Issue
Block a user