1 | ======================================================================
|
---|
2 | ERROR: Doctest: regressiontests.forms.tests.__test__.form_tests
|
---|
3 | ----------------------------------------------------------------------
|
---|
4 | Traceback (most recent call last):
|
---|
5 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 2163, in runTest
|
---|
6 | failures, tries = runner.run(
|
---|
7 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1392, in run
|
---|
8 | return self.__run(test, compileflags, out)
|
---|
9 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1265, in __run
|
---|
10 | got = self._fakeout.getvalue() # the actual output
|
---|
11 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 274, in getvalue
|
---|
12 | result = StringIO.getvalue(self)
|
---|
13 | File "StringIO.py", line 271, in getvalue
|
---|
14 | self.buf += ''.join(self.buflist)
|
---|
15 | UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 102: ordinal not in range(128)
|
---|
16 |
|
---|
17 | ======================================================================
|
---|
18 | FAIL: Doctest: django.contrib.sessions.tests
|
---|
19 | ----------------------------------------------------------------------
|
---|
20 | Traceback (most recent call last):
|
---|
21 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 2169, in runTest
|
---|
22 | raise self.failureException(self.format_failure(new.getvalue()))
|
---|
23 | AssertionError: Failed doctest test for django.contrib.sessions.tests
|
---|
24 | File "/usr/lib/python2.4/site-packages/django/contrib/sessions/tests.py", line 0, in tests
|
---|
25 |
|
---|
26 | ----------------------------------------------------------------------
|
---|
27 | File "/usr/lib/python2.4/site-packages/django/contrib/sessions/tests.py", line 5, in django.contrib.sessions.tests
|
---|
28 | Failed example:
|
---|
29 | from django.contrib.sessions.backends.file import SessionStore as FileSession
|
---|
30 | Exception raised:
|
---|
31 | Traceback (most recent call last):
|
---|
32 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
33 | compileflags, 1) in test.globs
|
---|
34 | File "<doctest django.contrib.sessions.tests[2]>", line 1, in ?
|
---|
35 | from django.contrib.sessions.backends.file import SessionStore as FileSession
|
---|
36 | File "/usr/lib/python2.4/site-packages/django/contrib/sessions/backends/file.py", line 39
|
---|
37 | finally:
|
---|
38 | ^
|
---|
39 | SyntaxError: invalid syntax
|
---|
40 | ----------------------------------------------------------------------
|
---|
41 | File "/usr/lib/python2.4/site-packages/django/contrib/sessions/tests.py", line 24, in django.contrib.sessions.tests
|
---|
42 | Failed example:
|
---|
43 | file_session = FileSession()
|
---|
44 | Exception raised:
|
---|
45 | Traceback (most recent call last):
|
---|
46 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
47 | compileflags, 1) in test.globs
|
---|
48 | File "<doctest django.contrib.sessions.tests[13]>", line 1, in ?
|
---|
49 | file_session = FileSession()
|
---|
50 | NameError: name 'FileSession' is not defined
|
---|
51 | ----------------------------------------------------------------------
|
---|
52 | File "/usr/lib/python2.4/site-packages/django/contrib/sessions/tests.py", line 25, in django.contrib.sessions.tests
|
---|
53 | Failed example:
|
---|
54 | file_session.modified
|
---|
55 | Exception raised:
|
---|
56 | Traceback (most recent call last):
|
---|
57 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
58 | compileflags, 1) in test.globs
|
---|
59 | File "<doctest django.contrib.sessions.tests[14]>", line 1, in ?
|
---|
60 | file_session.modified
|
---|
61 | NameError: name 'file_session' is not defined
|
---|
62 | ----------------------------------------------------------------------
|
---|
63 | File "/usr/lib/python2.4/site-packages/django/contrib/sessions/tests.py", line 27, in django.contrib.sessions.tests
|
---|
64 | Failed example:
|
---|
65 | file_session['cat'] = "dog"
|
---|
66 | Exception raised:
|
---|
67 | Traceback (most recent call last):
|
---|
68 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
69 | compileflags, 1) in test.globs
|
---|
70 | File "<doctest django.contrib.sessions.tests[15]>", line 1, in ?
|
---|
71 | file_session['cat'] = "dog"
|
---|
72 | NameError: name 'file_session' is not defined
|
---|
73 | ----------------------------------------------------------------------
|
---|
74 | File "/usr/lib/python2.4/site-packages/django/contrib/sessions/tests.py", line 28, in django.contrib.sessions.tests
|
---|
75 | Failed example:
|
---|
76 | file_session.modified
|
---|
77 | Exception raised:
|
---|
78 | Traceback (most recent call last):
|
---|
79 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
80 | compileflags, 1) in test.globs
|
---|
81 | File "<doctest django.contrib.sessions.tests[16]>", line 1, in ?
|
---|
82 | file_session.modified
|
---|
83 | NameError: name 'file_session' is not defined
|
---|
84 | ----------------------------------------------------------------------
|
---|
85 | File "/usr/lib/python2.4/site-packages/django/contrib/sessions/tests.py", line 30, in django.contrib.sessions.tests
|
---|
86 | Failed example:
|
---|
87 | file_session.pop('cat')
|
---|
88 | Exception raised:
|
---|
89 | Traceback (most recent call last):
|
---|
90 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
91 | compileflags, 1) in test.globs
|
---|
92 | File "<doctest django.contrib.sessions.tests[17]>", line 1, in ?
|
---|
93 | file_session.pop('cat')
|
---|
94 | NameError: name 'file_session' is not defined
|
---|
95 | ----------------------------------------------------------------------
|
---|
96 | File "/usr/lib/python2.4/site-packages/django/contrib/sessions/tests.py", line 32, in django.contrib.sessions.tests
|
---|
97 | Failed example:
|
---|
98 | file_session.pop('some key', 'does not exist')
|
---|
99 | Exception raised:
|
---|
100 | Traceback (most recent call last):
|
---|
101 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
102 | compileflags, 1) in test.globs
|
---|
103 | File "<doctest django.contrib.sessions.tests[18]>", line 1, in ?
|
---|
104 | file_session.pop('some key', 'does not exist')
|
---|
105 | NameError: name 'file_session' is not defined
|
---|
106 | ----------------------------------------------------------------------
|
---|
107 | File "/usr/lib/python2.4/site-packages/django/contrib/sessions/tests.py", line 34, in django.contrib.sessions.tests
|
---|
108 | Failed example:
|
---|
109 | file_session.save()
|
---|
110 | Exception raised:
|
---|
111 | Traceback (most recent call last):
|
---|
112 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
113 | compileflags, 1) in test.globs
|
---|
114 | File "<doctest django.contrib.sessions.tests[19]>", line 1, in ?
|
---|
115 | file_session.save()
|
---|
116 | NameError: name 'file_session' is not defined
|
---|
117 | ----------------------------------------------------------------------
|
---|
118 | File "/usr/lib/python2.4/site-packages/django/contrib/sessions/tests.py", line 35, in django.contrib.sessions.tests
|
---|
119 | Failed example:
|
---|
120 | file_session.exists(file_session.session_key)
|
---|
121 | Exception raised:
|
---|
122 | Traceback (most recent call last):
|
---|
123 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
124 | compileflags, 1) in test.globs
|
---|
125 | File "<doctest django.contrib.sessions.tests[20]>", line 1, in ?
|
---|
126 | file_session.exists(file_session.session_key)
|
---|
127 | NameError: name 'file_session' is not defined
|
---|
128 | ----------------------------------------------------------------------
|
---|
129 | File "/usr/lib/python2.4/site-packages/django/contrib/sessions/tests.py", line 37, in django.contrib.sessions.tests
|
---|
130 | Failed example:
|
---|
131 | file_session.delete(file_session.session_key)
|
---|
132 | Exception raised:
|
---|
133 | Traceback (most recent call last):
|
---|
134 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
135 | compileflags, 1) in test.globs
|
---|
136 | File "<doctest django.contrib.sessions.tests[21]>", line 1, in ?
|
---|
137 | file_session.delete(file_session.session_key)
|
---|
138 | NameError: name 'file_session' is not defined
|
---|
139 | ----------------------------------------------------------------------
|
---|
140 | File "/usr/lib/python2.4/site-packages/django/contrib/sessions/tests.py", line 38, in django.contrib.sessions.tests
|
---|
141 | Failed example:
|
---|
142 | file_session.exists(file_session.session_key)
|
---|
143 | Exception raised:
|
---|
144 | Traceback (most recent call last):
|
---|
145 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
146 | compileflags, 1) in test.globs
|
---|
147 | File "<doctest django.contrib.sessions.tests[22]>", line 1, in ?
|
---|
148 | file_session.exists(file_session.session_key)
|
---|
149 | NameError: name 'file_session' is not defined
|
---|
150 |
|
---|
151 |
|
---|
152 | ======================================================================
|
---|
153 | FAIL: Doctest: regressiontests.dateformat.tests
|
---|
154 | ----------------------------------------------------------------------
|
---|
155 | Traceback (most recent call last):
|
---|
156 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 2169, in runTest
|
---|
157 | raise self.failureException(self.format_failure(new.getvalue()))
|
---|
158 | AssertionError: Failed doctest test for regressiontests.dateformat.tests
|
---|
159 | File "/home/lin/src/SVN/django/tests/regressiontests/dateformat/tests.py", line 0, in tests
|
---|
160 |
|
---|
161 | ----------------------------------------------------------------------
|
---|
162 | File "/home/lin/src/SVN/django/tests/regressiontests/dateformat/tests.py", line 4, in regressiontests.dateformat.tests
|
---|
163 | Failed example:
|
---|
164 | format(my_birthday, 'a')
|
---|
165 | Expected:
|
---|
166 | u'p.m.'
|
---|
167 | Got:
|
---|
168 | u'p.m'
|
---|
169 | ----------------------------------------------------------------------
|
---|
170 | File "/home/lin/src/SVN/django/tests/regressiontests/dateformat/tests.py", line 12, in regressiontests.dateformat.tests
|
---|
171 | Failed example:
|
---|
172 | format(my_birthday, 'l')
|
---|
173 | Expected:
|
---|
174 | u'Sunday'
|
---|
175 | Got:
|
---|
176 | u'Domingo'
|
---|
177 | ----------------------------------------------------------------------
|
---|
178 | File "/home/lin/src/SVN/django/tests/regressiontests/dateformat/tests.py", line 24, in regressiontests.dateformat.tests
|
---|
179 | Failed example:
|
---|
180 | format(my_birthday, 'N')
|
---|
181 | Expected:
|
---|
182 | u'July'
|
---|
183 | Got:
|
---|
184 | u'Julio'
|
---|
185 | ----------------------------------------------------------------------
|
---|
186 | File "/home/lin/src/SVN/django/tests/regressiontests/dateformat/tests.py", line 28, in regressiontests.dateformat.tests
|
---|
187 | Failed example:
|
---|
188 | format(my_birthday, 'P')
|
---|
189 | Expected:
|
---|
190 | u'10 p.m.'
|
---|
191 | Got:
|
---|
192 | u'10 p.m'
|
---|
193 | ----------------------------------------------------------------------
|
---|
194 | File "/home/lin/src/SVN/django/tests/regressiontests/dateformat/tests.py", line 30, in regressiontests.dateformat.tests
|
---|
195 | Failed example:
|
---|
196 | no_tz or format(my_birthday, 'r') == 'Sun, 8 Jul 1979 22:00:00 +0100'
|
---|
197 | Expected:
|
---|
198 | True
|
---|
199 | Got:
|
---|
200 | False
|
---|
201 | ----------------------------------------------------------------------
|
---|
202 | File "/home/lin/src/SVN/django/tests/regressiontests/dateformat/tests.py", line 67, in regressiontests.dateformat.tests
|
---|
203 | Failed example:
|
---|
204 | format(my_birthday, r'jS o\f F')
|
---|
205 | Expected:
|
---|
206 | u'8th of July'
|
---|
207 | Got:
|
---|
208 | u'8th of Julio'
|
---|
209 |
|
---|
210 |
|
---|
211 | ======================================================================
|
---|
212 | FAIL: Doctest: regressiontests.defaultfilters.tests
|
---|
213 | ----------------------------------------------------------------------
|
---|
214 | Traceback (most recent call last):
|
---|
215 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 2169, in runTest
|
---|
216 | raise self.failureException(self.format_failure(new.getvalue()))
|
---|
217 | AssertionError: Failed doctest test for regressiontests.defaultfilters.tests
|
---|
218 | File "/home/lin/src/SVN/django/tests/regressiontests/defaultfilters/tests.py", line 2, in tests
|
---|
219 |
|
---|
220 | ----------------------------------------------------------------------
|
---|
221 | File "/home/lin/src/SVN/django/tests/regressiontests/defaultfilters/tests.py", line 319, in regressiontests.defaultfilters.tests
|
---|
222 | Failed example:
|
---|
223 | date(datetime.datetime(2005, 12, 29), u"d F Y")
|
---|
224 | Expected:
|
---|
225 | u'29 December 2005'
|
---|
226 | Got:
|
---|
227 | u'29 Diciembre 2005'
|
---|
228 | ----------------------------------------------------------------------
|
---|
229 | File "/home/lin/src/SVN/django/tests/regressiontests/defaultfilters/tests.py", line 321, in regressiontests.defaultfilters.tests
|
---|
230 | Failed example:
|
---|
231 | date(datetime.datetime(2005, 12, 29), ur'jS o\f F')
|
---|
232 | Expected:
|
---|
233 | u'29th of December'
|
---|
234 | Got:
|
---|
235 | u'29th of Diciembre'
|
---|
236 | ----------------------------------------------------------------------
|
---|
237 | File "/home/lin/src/SVN/django/tests/regressiontests/defaultfilters/tests.py", line 332, in regressiontests.defaultfilters.tests
|
---|
238 | Failed example:
|
---|
239 | timesince(datetime.datetime.now() - datetime.timedelta(1))
|
---|
240 | Expected:
|
---|
241 | u'1 day'
|
---|
242 | Got:
|
---|
243 | u'1 d\xeda'
|
---|
244 | ----------------------------------------------------------------------
|
---|
245 | File "/home/lin/src/SVN/django/tests/regressiontests/defaultfilters/tests.py", line 359, in regressiontests.defaultfilters.tests
|
---|
246 | Failed example:
|
---|
247 | yesno(True)
|
---|
248 | Expected:
|
---|
249 | u'yes'
|
---|
250 | Got:
|
---|
251 | u's\xed'
|
---|
252 | ----------------------------------------------------------------------
|
---|
253 | File "/home/lin/src/SVN/django/tests/regressiontests/defaultfilters/tests.py", line 365, in regressiontests.defaultfilters.tests
|
---|
254 | Failed example:
|
---|
255 | yesno(None)
|
---|
256 | Expected:
|
---|
257 | u'maybe'
|
---|
258 | Got:
|
---|
259 | u'tal vez'
|
---|
260 |
|
---|
261 |
|
---|
262 | ======================================================================
|
---|
263 | FAIL: Doctest: regressiontests.forms.tests.__test__.localflavor
|
---|
264 | ----------------------------------------------------------------------
|
---|
265 | Traceback (most recent call last):
|
---|
266 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 2169, in runTest
|
---|
267 | raise self.failureException(self.format_failure(new.getvalue()))
|
---|
268 | AssertionError: Failed doctest test for regressiontests.forms.tests.__test__.localflavor
|
---|
269 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line unknown line number, in localflavor
|
---|
270 |
|
---|
271 | ----------------------------------------------------------------------
|
---|
272 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
273 | Failed example:
|
---|
274 | f.clean('4000')
|
---|
275 | Expected:
|
---|
276 | Traceback (most recent call last):
|
---|
277 | ...
|
---|
278 | ValidationError: [u'Enter a zip code in the format XXXXX or XXXXX-XXXX.']
|
---|
279 | Got:
|
---|
280 | Traceback (most recent call last):
|
---|
281 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
282 | compileflags, 1) in test.globs
|
---|
283 | File "<doctest regressiontests.forms.tests.__test__.localflavor[5]>", line 1, in ?
|
---|
284 | f.clean('4000')
|
---|
285 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
286 | raise ValidationError(self.error_message)
|
---|
287 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX o XXXX-XXXX.']
|
---|
288 | ----------------------------------------------------------------------
|
---|
289 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
290 | Failed example:
|
---|
291 | f.clean('6060-1234')
|
---|
292 | Expected:
|
---|
293 | Traceback (most recent call last):
|
---|
294 | ...
|
---|
295 | ValidationError: [u'Enter a zip code in the format XXXXX or XXXXX-XXXX.']
|
---|
296 | Got:
|
---|
297 | Traceback (most recent call last):
|
---|
298 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
299 | compileflags, 1) in test.globs
|
---|
300 | File "<doctest regressiontests.forms.tests.__test__.localflavor[7]>", line 1, in ?
|
---|
301 | f.clean('6060-1234')
|
---|
302 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
303 | raise ValidationError(self.error_message)
|
---|
304 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX o XXXX-XXXX.']
|
---|
305 | ----------------------------------------------------------------------
|
---|
306 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
307 | Failed example:
|
---|
308 | f.clean('60606-')
|
---|
309 | Expected:
|
---|
310 | Traceback (most recent call last):
|
---|
311 | ...
|
---|
312 | ValidationError: [u'Enter a zip code in the format XXXXX or XXXXX-XXXX.']
|
---|
313 | Got:
|
---|
314 | Traceback (most recent call last):
|
---|
315 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
316 | compileflags, 1) in test.globs
|
---|
317 | File "<doctest regressiontests.forms.tests.__test__.localflavor[8]>", line 1, in ?
|
---|
318 | f.clean('60606-')
|
---|
319 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
320 | raise ValidationError(self.error_message)
|
---|
321 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX o XXXX-XXXX.']
|
---|
322 | ----------------------------------------------------------------------
|
---|
323 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
324 | Failed example:
|
---|
325 | f.clean(None)
|
---|
326 | Expected:
|
---|
327 | Traceback (most recent call last):
|
---|
328 | ...
|
---|
329 | ValidationError: [u'This field is required.']
|
---|
330 | Got:
|
---|
331 | Traceback (most recent call last):
|
---|
332 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
333 | compileflags, 1) in test.globs
|
---|
334 | File "<doctest regressiontests.forms.tests.__test__.localflavor[9]>", line 1, in ?
|
---|
335 | f.clean(None)
|
---|
336 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
337 | value = super(RegexField, self).clean(value)
|
---|
338 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
339 | super(CharField, self).clean(value)
|
---|
340 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
341 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
342 | ValidationError: [u'Este campo es obligatorio.']
|
---|
343 | ----------------------------------------------------------------------
|
---|
344 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
345 | Failed example:
|
---|
346 | f.clean('')
|
---|
347 | Expected:
|
---|
348 | Traceback (most recent call last):
|
---|
349 | ...
|
---|
350 | ValidationError: [u'This field is required.']
|
---|
351 | Got:
|
---|
352 | Traceback (most recent call last):
|
---|
353 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
354 | compileflags, 1) in test.globs
|
---|
355 | File "<doctest regressiontests.forms.tests.__test__.localflavor[10]>", line 1, in ?
|
---|
356 | f.clean('')
|
---|
357 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
358 | value = super(RegexField, self).clean(value)
|
---|
359 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
360 | super(CharField, self).clean(value)
|
---|
361 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
362 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
363 | ValidationError: [u'Este campo es obligatorio.']
|
---|
364 | ----------------------------------------------------------------------
|
---|
365 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
366 | Failed example:
|
---|
367 | f.clean('4000')
|
---|
368 | Expected:
|
---|
369 | Traceback (most recent call last):
|
---|
370 | ...
|
---|
371 | ValidationError: [u'Enter a zip code in the format XXXXX or XXXXX-XXXX.']
|
---|
372 | Got:
|
---|
373 | Traceback (most recent call last):
|
---|
374 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
375 | compileflags, 1) in test.globs
|
---|
376 | File "<doctest regressiontests.forms.tests.__test__.localflavor[15]>", line 1, in ?
|
---|
377 | f.clean('4000')
|
---|
378 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
379 | raise ValidationError(self.error_message)
|
---|
380 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX o XXXX-XXXX.']
|
---|
381 | ----------------------------------------------------------------------
|
---|
382 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
383 | Failed example:
|
---|
384 | f.clean('6060-1234')
|
---|
385 | Expected:
|
---|
386 | Traceback (most recent call last):
|
---|
387 | ...
|
---|
388 | ValidationError: [u'Enter a zip code in the format XXXXX or XXXXX-XXXX.']
|
---|
389 | Got:
|
---|
390 | Traceback (most recent call last):
|
---|
391 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
392 | compileflags, 1) in test.globs
|
---|
393 | File "<doctest regressiontests.forms.tests.__test__.localflavor[17]>", line 1, in ?
|
---|
394 | f.clean('6060-1234')
|
---|
395 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
396 | raise ValidationError(self.error_message)
|
---|
397 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX o XXXX-XXXX.']
|
---|
398 | ----------------------------------------------------------------------
|
---|
399 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
400 | Failed example:
|
---|
401 | f.clean('60606-')
|
---|
402 | Expected:
|
---|
403 | Traceback (most recent call last):
|
---|
404 | ...
|
---|
405 | ValidationError: [u'Enter a zip code in the format XXXXX or XXXXX-XXXX.']
|
---|
406 | Got:
|
---|
407 | Traceback (most recent call last):
|
---|
408 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
409 | compileflags, 1) in test.globs
|
---|
410 | File "<doctest regressiontests.forms.tests.__test__.localflavor[18]>", line 1, in ?
|
---|
411 | f.clean('60606-')
|
---|
412 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
413 | raise ValidationError(self.error_message)
|
---|
414 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX o XXXX-XXXX.']
|
---|
415 | ----------------------------------------------------------------------
|
---|
416 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
417 | Failed example:
|
---|
418 | f.clean(None)
|
---|
419 | Expected:
|
---|
420 | Traceback (most recent call last):
|
---|
421 | ...
|
---|
422 | ValidationError: [u'This field is required.']
|
---|
423 | Got:
|
---|
424 | Traceback (most recent call last):
|
---|
425 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
426 | compileflags, 1) in test.globs
|
---|
427 | File "<doctest regressiontests.forms.tests.__test__.localflavor[33]>", line 1, in ?
|
---|
428 | f.clean(None)
|
---|
429 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/us/forms.py", line 23, in clean
|
---|
430 | super(USPhoneNumberField, self).clean(value)
|
---|
431 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
432 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
433 | ValidationError: [u'Este campo es obligatorio.']
|
---|
434 | ----------------------------------------------------------------------
|
---|
435 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
436 | Failed example:
|
---|
437 | f.clean('')
|
---|
438 | Expected:
|
---|
439 | Traceback (most recent call last):
|
---|
440 | ...
|
---|
441 | ValidationError: [u'This field is required.']
|
---|
442 | Got:
|
---|
443 | Traceback (most recent call last):
|
---|
444 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
445 | compileflags, 1) in test.globs
|
---|
446 | File "<doctest regressiontests.forms.tests.__test__.localflavor[34]>", line 1, in ?
|
---|
447 | f.clean('')
|
---|
448 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/us/forms.py", line 23, in clean
|
---|
449 | super(USPhoneNumberField, self).clean(value)
|
---|
450 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
451 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
452 | ValidationError: [u'Este campo es obligatorio.']
|
---|
453 | ----------------------------------------------------------------------
|
---|
454 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
455 | Failed example:
|
---|
456 | f.clean(None)
|
---|
457 | Expected:
|
---|
458 | Traceback (most recent call last):
|
---|
459 | ...
|
---|
460 | ValidationError: [u'This field is required.']
|
---|
461 | Got:
|
---|
462 | Traceback (most recent call last):
|
---|
463 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
464 | compileflags, 1) in test.globs
|
---|
465 | File "<doctest regressiontests.forms.tests.__test__.localflavor[55]>", line 1, in ?
|
---|
466 | f.clean(None)
|
---|
467 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/us/forms.py", line 79, in clean
|
---|
468 | super(USStateField, self).clean(value)
|
---|
469 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
470 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
471 | ValidationError: [u'Este campo es obligatorio.']
|
---|
472 | ----------------------------------------------------------------------
|
---|
473 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
474 | Failed example:
|
---|
475 | f.clean('')
|
---|
476 | Expected:
|
---|
477 | Traceback (most recent call last):
|
---|
478 | ...
|
---|
479 | ValidationError: [u'This field is required.']
|
---|
480 | Got:
|
---|
481 | Traceback (most recent call last):
|
---|
482 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
483 | compileflags, 1) in test.globs
|
---|
484 | File "<doctest regressiontests.forms.tests.__test__.localflavor[56]>", line 1, in ?
|
---|
485 | f.clean('')
|
---|
486 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/us/forms.py", line 79, in clean
|
---|
487 | super(USStateField, self).clean(value)
|
---|
488 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
489 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
490 | ValidationError: [u'Este campo es obligatorio.']
|
---|
491 | ----------------------------------------------------------------------
|
---|
492 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
493 | Failed example:
|
---|
494 | f.clean('078-05-1120')
|
---|
495 | Expected:
|
---|
496 | Traceback (most recent call last):
|
---|
497 | ...
|
---|
498 | ValidationError: [u'Enter a valid U.S. Social Security number in XXX-XX-XXXX format.']
|
---|
499 | Got:
|
---|
500 | Traceback (most recent call last):
|
---|
501 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
502 | compileflags, 1) in test.globs
|
---|
503 | File "<doctest regressiontests.forms.tests.__test__.localflavor[72]>", line 1, in ?
|
---|
504 | f.clean('078-05-1120')
|
---|
505 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/us/forms.py", line 68, in clean
|
---|
506 | raise ValidationError(msg)
|
---|
507 | ValidationError: [u'Introduzca un N\xfamero Seguro Social de EEUU v\xe1lido en el formato XXX-XX-XXXX']
|
---|
508 | ----------------------------------------------------------------------
|
---|
509 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
510 | Failed example:
|
---|
511 | f.clean('BT324PX')
|
---|
512 | Expected:
|
---|
513 | Traceback (most recent call last):
|
---|
514 | ...
|
---|
515 | ValidationError: [u'Enter a postcode. A space is required between the two postcode parts.']
|
---|
516 | Got:
|
---|
517 | Traceback (most recent call last):
|
---|
518 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
519 | compileflags, 1) in test.globs
|
---|
520 | File "<doctest regressiontests.forms.tests.__test__.localflavor[77]>", line 1, in ?
|
---|
521 | f.clean('BT324PX')
|
---|
522 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
523 | raise ValidationError(self.error_message)
|
---|
524 | ValidationError: [u'Introduzca un c\xf3digo postal. Se necesita un espacio entre las dos partes del c\xf3digo.']
|
---|
525 | ----------------------------------------------------------------------
|
---|
526 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
527 | Failed example:
|
---|
528 | f.clean('1NV 4L1D')
|
---|
529 | Expected:
|
---|
530 | Traceback (most recent call last):
|
---|
531 | ...
|
---|
532 | ValidationError: [u'Enter a postcode. A space is required between the two postcode parts.']
|
---|
533 | Got:
|
---|
534 | Traceback (most recent call last):
|
---|
535 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
536 | compileflags, 1) in test.globs
|
---|
537 | File "<doctest regressiontests.forms.tests.__test__.localflavor[78]>", line 1, in ?
|
---|
538 | f.clean('1NV 4L1D')
|
---|
539 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
540 | raise ValidationError(self.error_message)
|
---|
541 | ValidationError: [u'Introduzca un c\xf3digo postal. Se necesita un espacio entre las dos partes del c\xf3digo.']
|
---|
542 | ----------------------------------------------------------------------
|
---|
543 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
544 | Failed example:
|
---|
545 | f.clean(None)
|
---|
546 | Expected:
|
---|
547 | Traceback (most recent call last):
|
---|
548 | ...
|
---|
549 | ValidationError: [u'This field is required.']
|
---|
550 | Got:
|
---|
551 | Traceback (most recent call last):
|
---|
552 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
553 | compileflags, 1) in test.globs
|
---|
554 | File "<doctest regressiontests.forms.tests.__test__.localflavor[79]>", line 1, in ?
|
---|
555 | f.clean(None)
|
---|
556 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
557 | value = super(RegexField, self).clean(value)
|
---|
558 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
559 | super(CharField, self).clean(value)
|
---|
560 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
561 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
562 | ValidationError: [u'Este campo es obligatorio.']
|
---|
563 | ----------------------------------------------------------------------
|
---|
564 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
565 | Failed example:
|
---|
566 | f.clean('')
|
---|
567 | Expected:
|
---|
568 | Traceback (most recent call last):
|
---|
569 | ...
|
---|
570 | ValidationError: [u'This field is required.']
|
---|
571 | Got:
|
---|
572 | Traceback (most recent call last):
|
---|
573 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
574 | compileflags, 1) in test.globs
|
---|
575 | File "<doctest regressiontests.forms.tests.__test__.localflavor[80]>", line 1, in ?
|
---|
576 | f.clean('')
|
---|
577 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
578 | value = super(RegexField, self).clean(value)
|
---|
579 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
580 | super(CharField, self).clean(value)
|
---|
581 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
582 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
583 | ValidationError: [u'Este campo es obligatorio.']
|
---|
584 | ----------------------------------------------------------------------
|
---|
585 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
586 | Failed example:
|
---|
587 | f.clean('1NV 4L1D')
|
---|
588 | Expected:
|
---|
589 | Traceback (most recent call last):
|
---|
590 | ...
|
---|
591 | ValidationError: [u'Enter a postcode. A space is required between the two postcode parts.']
|
---|
592 | Got:
|
---|
593 | Traceback (most recent call last):
|
---|
594 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
595 | compileflags, 1) in test.globs
|
---|
596 | File "<doctest regressiontests.forms.tests.__test__.localflavor[84]>", line 1, in ?
|
---|
597 | f.clean('1NV 4L1D')
|
---|
598 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
599 | raise ValidationError(self.error_message)
|
---|
600 | ValidationError: [u'Introduzca un c\xf3digo postal. Se necesita un espacio entre las dos partes del c\xf3digo.']
|
---|
601 | ----------------------------------------------------------------------
|
---|
602 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
603 | Failed example:
|
---|
604 | f.clean('BT324PX')
|
---|
605 | Expected:
|
---|
606 | Traceback (most recent call last):
|
---|
607 | ...
|
---|
608 | ValidationError: [u'Enter a postcode. A space is required between the two postcode parts.']
|
---|
609 | Got:
|
---|
610 | Traceback (most recent call last):
|
---|
611 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
612 | compileflags, 1) in test.globs
|
---|
613 | File "<doctest regressiontests.forms.tests.__test__.localflavor[85]>", line 1, in ?
|
---|
614 | f.clean('BT324PX')
|
---|
615 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
616 | raise ValidationError(self.error_message)
|
---|
617 | ValidationError: [u'Introduzca un c\xf3digo postal. Se necesita un espacio entre las dos partes del c\xf3digo.']
|
---|
618 | ----------------------------------------------------------------------
|
---|
619 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
620 | Failed example:
|
---|
621 | f.clean('2A200')
|
---|
622 | Expected:
|
---|
623 | Traceback (most recent call last):
|
---|
624 | ...
|
---|
625 | ValidationError: [u'Enter a zip code in the format XXXXX.']
|
---|
626 | Got:
|
---|
627 | Traceback (most recent call last):
|
---|
628 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
629 | compileflags, 1) in test.globs
|
---|
630 | File "<doctest regressiontests.forms.tests.__test__.localflavor[92]>", line 1, in ?
|
---|
631 | f.clean('2A200')
|
---|
632 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
633 | raise ValidationError(self.error_message)
|
---|
634 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX.']
|
---|
635 | ----------------------------------------------------------------------
|
---|
636 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
637 | Failed example:
|
---|
638 | f.clean('980001')
|
---|
639 | Expected:
|
---|
640 | Traceback (most recent call last):
|
---|
641 | ...
|
---|
642 | ValidationError: [u'Enter a zip code in the format XXXXX.']
|
---|
643 | Got:
|
---|
644 | Traceback (most recent call last):
|
---|
645 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
646 | compileflags, 1) in test.globs
|
---|
647 | File "<doctest regressiontests.forms.tests.__test__.localflavor[93]>", line 1, in ?
|
---|
648 | f.clean('980001')
|
---|
649 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
650 | raise ValidationError(self.error_message)
|
---|
651 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX.']
|
---|
652 | ----------------------------------------------------------------------
|
---|
653 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
654 | Failed example:
|
---|
655 | f.clean(None)
|
---|
656 | Expected:
|
---|
657 | Traceback (most recent call last):
|
---|
658 | ...
|
---|
659 | ValidationError: [u'This field is required.']
|
---|
660 | Got:
|
---|
661 | Traceback (most recent call last):
|
---|
662 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
663 | compileflags, 1) in test.globs
|
---|
664 | File "<doctest regressiontests.forms.tests.__test__.localflavor[94]>", line 1, in ?
|
---|
665 | f.clean(None)
|
---|
666 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
667 | value = super(RegexField, self).clean(value)
|
---|
668 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
669 | super(CharField, self).clean(value)
|
---|
670 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
671 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
672 | ValidationError: [u'Este campo es obligatorio.']
|
---|
673 | ----------------------------------------------------------------------
|
---|
674 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
675 | Failed example:
|
---|
676 | f.clean('')
|
---|
677 | Expected:
|
---|
678 | Traceback (most recent call last):
|
---|
679 | ...
|
---|
680 | ValidationError: [u'This field is required.']
|
---|
681 | Got:
|
---|
682 | Traceback (most recent call last):
|
---|
683 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
684 | compileflags, 1) in test.globs
|
---|
685 | File "<doctest regressiontests.forms.tests.__test__.localflavor[95]>", line 1, in ?
|
---|
686 | f.clean('')
|
---|
687 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
688 | value = super(RegexField, self).clean(value)
|
---|
689 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
690 | super(CharField, self).clean(value)
|
---|
691 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
692 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
693 | ValidationError: [u'Este campo es obligatorio.']
|
---|
694 | ----------------------------------------------------------------------
|
---|
695 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
696 | Failed example:
|
---|
697 | f.clean('2A200')
|
---|
698 | Expected:
|
---|
699 | Traceback (most recent call last):
|
---|
700 | ...
|
---|
701 | ValidationError: [u'Enter a zip code in the format XXXXX.']
|
---|
702 | Got:
|
---|
703 | Traceback (most recent call last):
|
---|
704 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
705 | compileflags, 1) in test.globs
|
---|
706 | File "<doctest regressiontests.forms.tests.__test__.localflavor[99]>", line 1, in ?
|
---|
707 | f.clean('2A200')
|
---|
708 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
709 | raise ValidationError(self.error_message)
|
---|
710 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX.']
|
---|
711 | ----------------------------------------------------------------------
|
---|
712 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
713 | Failed example:
|
---|
714 | f.clean('980001')
|
---|
715 | Expected:
|
---|
716 | Traceback (most recent call last):
|
---|
717 | ...
|
---|
718 | ValidationError: [u'Enter a zip code in the format XXXXX.']
|
---|
719 | Got:
|
---|
720 | Traceback (most recent call last):
|
---|
721 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
722 | compileflags, 1) in test.globs
|
---|
723 | File "<doctest regressiontests.forms.tests.__test__.localflavor[100]>", line 1, in ?
|
---|
724 | f.clean('980001')
|
---|
725 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
726 | raise ValidationError(self.error_message)
|
---|
727 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX.']
|
---|
728 | ----------------------------------------------------------------------
|
---|
729 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
730 | Failed example:
|
---|
731 | f.clean(None)
|
---|
732 | Expected:
|
---|
733 | Traceback (most recent call last):
|
---|
734 | ...
|
---|
735 | ValidationError: [u'This field is required.']
|
---|
736 | Got:
|
---|
737 | Traceback (most recent call last):
|
---|
738 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
739 | compileflags, 1) in test.globs
|
---|
740 | File "<doctest regressiontests.forms.tests.__test__.localflavor[112]>", line 1, in ?
|
---|
741 | f.clean(None)
|
---|
742 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/fr/forms.py", line 28, in clean
|
---|
743 | super(FRPhoneNumberField, self).clean(value)
|
---|
744 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
745 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
746 | ValidationError: [u'Este campo es obligatorio.']
|
---|
747 | ----------------------------------------------------------------------
|
---|
748 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
749 | Failed example:
|
---|
750 | f.clean('')
|
---|
751 | Expected:
|
---|
752 | Traceback (most recent call last):
|
---|
753 | ...
|
---|
754 | ValidationError: [u'This field is required.']
|
---|
755 | Got:
|
---|
756 | Traceback (most recent call last):
|
---|
757 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
758 | compileflags, 1) in test.globs
|
---|
759 | File "<doctest regressiontests.forms.tests.__test__.localflavor[113]>", line 1, in ?
|
---|
760 | f.clean('')
|
---|
761 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/fr/forms.py", line 28, in clean
|
---|
762 | super(FRPhoneNumberField, self).clean(value)
|
---|
763 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
764 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
765 | ValidationError: [u'Este campo es obligatorio.']
|
---|
766 | ----------------------------------------------------------------------
|
---|
767 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
768 | Failed example:
|
---|
769 | f.clean('2510-032')
|
---|
770 | Expected:
|
---|
771 | Traceback (most recent call last):
|
---|
772 | ...
|
---|
773 | ValidationError: [u'Enter a postal code in the format XXXXXXX or XXX-XXXX.']
|
---|
774 | Got:
|
---|
775 | Traceback (most recent call last):
|
---|
776 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
777 | compileflags, 1) in test.globs
|
---|
778 | File "<doctest regressiontests.forms.tests.__test__.localflavor[131]>", line 1, in ?
|
---|
779 | f.clean('2510-032')
|
---|
780 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/jp/forms.py", line 29, in clean
|
---|
781 | v = super(JPPostalCodeField, self).clean(value)
|
---|
782 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
783 | raise ValidationError(self.error_message)
|
---|
784 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX o XXXX-XXXX.']
|
---|
785 | ----------------------------------------------------------------------
|
---|
786 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
787 | Failed example:
|
---|
788 | f.clean('251a0032')
|
---|
789 | Expected:
|
---|
790 | Traceback (most recent call last):
|
---|
791 | ...
|
---|
792 | ValidationError: [u'Enter a postal code in the format XXXXXXX or XXX-XXXX.']
|
---|
793 | Got:
|
---|
794 | Traceback (most recent call last):
|
---|
795 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
796 | compileflags, 1) in test.globs
|
---|
797 | File "<doctest regressiontests.forms.tests.__test__.localflavor[132]>", line 1, in ?
|
---|
798 | f.clean('251a0032')
|
---|
799 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/jp/forms.py", line 29, in clean
|
---|
800 | v = super(JPPostalCodeField, self).clean(value)
|
---|
801 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
802 | raise ValidationError(self.error_message)
|
---|
803 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX o XXXX-XXXX.']
|
---|
804 | ----------------------------------------------------------------------
|
---|
805 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
806 | Failed example:
|
---|
807 | f.clean('a51-0032')
|
---|
808 | Expected:
|
---|
809 | Traceback (most recent call last):
|
---|
810 | ...
|
---|
811 | ValidationError: [u'Enter a postal code in the format XXXXXXX or XXX-XXXX.']
|
---|
812 | Got:
|
---|
813 | Traceback (most recent call last):
|
---|
814 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
815 | compileflags, 1) in test.globs
|
---|
816 | File "<doctest regressiontests.forms.tests.__test__.localflavor[133]>", line 1, in ?
|
---|
817 | f.clean('a51-0032')
|
---|
818 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/jp/forms.py", line 29, in clean
|
---|
819 | v = super(JPPostalCodeField, self).clean(value)
|
---|
820 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
821 | raise ValidationError(self.error_message)
|
---|
822 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX o XXXX-XXXX.']
|
---|
823 | ----------------------------------------------------------------------
|
---|
824 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
825 | Failed example:
|
---|
826 | f.clean('25100321')
|
---|
827 | Expected:
|
---|
828 | Traceback (most recent call last):
|
---|
829 | ...
|
---|
830 | ValidationError: [u'Enter a postal code in the format XXXXXXX or XXX-XXXX.']
|
---|
831 | Got:
|
---|
832 | Traceback (most recent call last):
|
---|
833 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
834 | compileflags, 1) in test.globs
|
---|
835 | File "<doctest regressiontests.forms.tests.__test__.localflavor[134]>", line 1, in ?
|
---|
836 | f.clean('25100321')
|
---|
837 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/jp/forms.py", line 29, in clean
|
---|
838 | v = super(JPPostalCodeField, self).clean(value)
|
---|
839 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
840 | raise ValidationError(self.error_message)
|
---|
841 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX o XXXX-XXXX.']
|
---|
842 | ----------------------------------------------------------------------
|
---|
843 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
844 | Failed example:
|
---|
845 | f.clean('')
|
---|
846 | Expected:
|
---|
847 | Traceback (most recent call last):
|
---|
848 | ...
|
---|
849 | ValidationError: [u'This field is required.']
|
---|
850 | Got:
|
---|
851 | Traceback (most recent call last):
|
---|
852 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
853 | compileflags, 1) in test.globs
|
---|
854 | File "<doctest regressiontests.forms.tests.__test__.localflavor[135]>", line 1, in ?
|
---|
855 | f.clean('')
|
---|
856 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/jp/forms.py", line 29, in clean
|
---|
857 | v = super(JPPostalCodeField, self).clean(value)
|
---|
858 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
859 | value = super(RegexField, self).clean(value)
|
---|
860 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
861 | super(CharField, self).clean(value)
|
---|
862 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
863 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
864 | ValidationError: [u'Este campo es obligatorio.']
|
---|
865 | ----------------------------------------------------------------------
|
---|
866 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
867 | Failed example:
|
---|
868 | f.clean('2510-032')
|
---|
869 | Expected:
|
---|
870 | Traceback (most recent call last):
|
---|
871 | ...
|
---|
872 | ValidationError: [u'Enter a postal code in the format XXXXXXX or XXX-XXXX.']
|
---|
873 | Got:
|
---|
874 | Traceback (most recent call last):
|
---|
875 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
876 | compileflags, 1) in test.globs
|
---|
877 | File "<doctest regressiontests.forms.tests.__test__.localflavor[139]>", line 1, in ?
|
---|
878 | f.clean('2510-032')
|
---|
879 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/jp/forms.py", line 29, in clean
|
---|
880 | v = super(JPPostalCodeField, self).clean(value)
|
---|
881 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
882 | raise ValidationError(self.error_message)
|
---|
883 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX o XXXX-XXXX.']
|
---|
884 | ----------------------------------------------------------------------
|
---|
885 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
886 | Failed example:
|
---|
887 | f.clean(' 00100')
|
---|
888 | Expected:
|
---|
889 | Traceback (most recent call last):
|
---|
890 | ...
|
---|
891 | ValidationError: [u'Enter a valid zip code.']
|
---|
892 | Got:
|
---|
893 | Traceback (most recent call last):
|
---|
894 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
895 | compileflags, 1) in test.globs
|
---|
896 | File "<doctest regressiontests.forms.tests.__test__.localflavor[148]>", line 1, in ?
|
---|
897 | f.clean(' 00100')
|
---|
898 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
899 | raise ValidationError(self.error_message)
|
---|
900 | ValidationError: [u'Introduzca un c\xf3digo postal v\xe1lido.']
|
---|
901 | ----------------------------------------------------------------------
|
---|
902 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
903 | Failed example:
|
---|
904 | f.clean('LBRRME11A01L736A')
|
---|
905 | Expected:
|
---|
906 | Traceback (most recent call last):
|
---|
907 | ...
|
---|
908 | ValidationError: [u'Enter a valid Social Security number.']
|
---|
909 | Got:
|
---|
910 | Traceback (most recent call last):
|
---|
911 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
912 | compileflags, 1) in test.globs
|
---|
913 | File "<doctest regressiontests.forms.tests.__test__.localflavor[158]>", line 1, in ?
|
---|
914 | f.clean('LBRRME11A01L736A')
|
---|
915 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/it/forms.py", line 57, in clean
|
---|
916 | raise ValidationError(self.err_msg)
|
---|
917 | ValidationError: [u'Introduzca un n\xfamero de Seguro Social v\xe1lido.']
|
---|
918 | ----------------------------------------------------------------------
|
---|
919 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
920 | Failed example:
|
---|
921 | f.clean('%BRRME11A01L736W')
|
---|
922 | Expected:
|
---|
923 | Traceback (most recent call last):
|
---|
924 | ...
|
---|
925 | ValidationError: [u'Enter a valid Social Security number.']
|
---|
926 | Got:
|
---|
927 | Traceback (most recent call last):
|
---|
928 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
929 | compileflags, 1) in test.globs
|
---|
930 | File "<doctest regressiontests.forms.tests.__test__.localflavor[159]>", line 1, in ?
|
---|
931 | f.clean('%BRRME11A01L736W')
|
---|
932 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/it/forms.py", line 48, in clean
|
---|
933 | value = super(ITSocialSecurityNumberField, self).clean(value)
|
---|
934 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
935 | raise ValidationError(self.error_message)
|
---|
936 | ValidationError: [u'Introduzca un n\xfamero de Seguro Social v\xe1lido.']
|
---|
937 | ----------------------------------------------------------------------
|
---|
938 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
939 | Failed example:
|
---|
940 | f.clean('07973780014')
|
---|
941 | Expected:
|
---|
942 | Traceback (most recent call last):
|
---|
943 | ...
|
---|
944 | ValidationError: [u'Enter a valid VAT number.']
|
---|
945 | Got:
|
---|
946 | Traceback (most recent call last):
|
---|
947 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
948 | compileflags, 1) in test.globs
|
---|
949 | File "<doctest regressiontests.forms.tests.__test__.localflavor[165]>", line 1, in ?
|
---|
950 | f.clean('07973780014')
|
---|
951 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/it/forms.py", line 76, in clean
|
---|
952 | raise ValidationError(err_msg)
|
---|
953 | ValidationError: [u'Introduzca un n\xfamero VAT v\xe1lido.']
|
---|
954 | ----------------------------------------------------------------------
|
---|
955 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
956 | Failed example:
|
---|
957 | f.clean('A7973780013')
|
---|
958 | Expected:
|
---|
959 | Traceback (most recent call last):
|
---|
960 | ...
|
---|
961 | ValidationError: [u'Enter a valid VAT number.']
|
---|
962 | Got:
|
---|
963 | Traceback (most recent call last):
|
---|
964 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
965 | compileflags, 1) in test.globs
|
---|
966 | File "<doctest regressiontests.forms.tests.__test__.localflavor[166]>", line 1, in ?
|
---|
967 | f.clean('A7973780013')
|
---|
968 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/it/forms.py", line 72, in clean
|
---|
969 | raise ValidationError(err_msg)
|
---|
970 | ValidationError: [u'Introduzca un n\xfamero VAT v\xe1lido.']
|
---|
971 | ----------------------------------------------------------------------
|
---|
972 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
973 | Failed example:
|
---|
974 | f.clean('20s40')
|
---|
975 | Expected:
|
---|
976 | Traceback (most recent call last):
|
---|
977 | ...
|
---|
978 | ValidationError: [u'Enter a zip code in the format XXXXX.']
|
---|
979 | Got:
|
---|
980 | Traceback (most recent call last):
|
---|
981 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
982 | compileflags, 1) in test.globs
|
---|
983 | File "<doctest regressiontests.forms.tests.__test__.localflavor[171]>", line 1, in ?
|
---|
984 | f.clean('20s40')
|
---|
985 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
986 | raise ValidationError(self.error_message)
|
---|
987 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX.']
|
---|
988 | ----------------------------------------------------------------------
|
---|
989 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
990 | Failed example:
|
---|
991 | f.clean('205401')
|
---|
992 | Expected:
|
---|
993 | Traceback (most recent call last):
|
---|
994 | ...
|
---|
995 | ValidationError: [u'Enter a zip code in the format XXXXX.']
|
---|
996 | Got:
|
---|
997 | Traceback (most recent call last):
|
---|
998 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
999 | compileflags, 1) in test.globs
|
---|
1000 | File "<doctest regressiontests.forms.tests.__test__.localflavor[172]>", line 1, in ?
|
---|
1001 | f.clean('205401')
|
---|
1002 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1003 | raise ValidationError(self.error_message)
|
---|
1004 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX.']
|
---|
1005 | ----------------------------------------------------------------------
|
---|
1006 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1007 | Failed example:
|
---|
1008 | f.clean(None)
|
---|
1009 | Expected:
|
---|
1010 | Traceback (most recent call last):
|
---|
1011 | ...
|
---|
1012 | ValidationError: [u'This field is required.']
|
---|
1013 | Got:
|
---|
1014 | Traceback (most recent call last):
|
---|
1015 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1016 | compileflags, 1) in test.globs
|
---|
1017 | File "<doctest regressiontests.forms.tests.__test__.localflavor[173]>", line 1, in ?
|
---|
1018 | f.clean(None)
|
---|
1019 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
1020 | value = super(RegexField, self).clean(value)
|
---|
1021 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
1022 | super(CharField, self).clean(value)
|
---|
1023 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
1024 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
1025 | ValidationError: [u'Este campo es obligatorio.']
|
---|
1026 | ----------------------------------------------------------------------
|
---|
1027 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1028 | Failed example:
|
---|
1029 | f.clean('')
|
---|
1030 | Expected:
|
---|
1031 | Traceback (most recent call last):
|
---|
1032 | ...
|
---|
1033 | ValidationError: [u'This field is required.']
|
---|
1034 | Got:
|
---|
1035 | Traceback (most recent call last):
|
---|
1036 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1037 | compileflags, 1) in test.globs
|
---|
1038 | File "<doctest regressiontests.forms.tests.__test__.localflavor[174]>", line 1, in ?
|
---|
1039 | f.clean('')
|
---|
1040 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
1041 | value = super(RegexField, self).clean(value)
|
---|
1042 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
1043 | super(CharField, self).clean(value)
|
---|
1044 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
1045 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
1046 | ValidationError: [u'Este campo es obligatorio.']
|
---|
1047 | ----------------------------------------------------------------------
|
---|
1048 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1049 | Failed example:
|
---|
1050 | f.clean('20s40')
|
---|
1051 | Expected:
|
---|
1052 | Traceback (most recent call last):
|
---|
1053 | ...
|
---|
1054 | ValidationError: [u'Enter a zip code in the format XXXXX.']
|
---|
1055 | Got:
|
---|
1056 | Traceback (most recent call last):
|
---|
1057 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1058 | compileflags, 1) in test.globs
|
---|
1059 | File "<doctest regressiontests.forms.tests.__test__.localflavor[178]>", line 1, in ?
|
---|
1060 | f.clean('20s40')
|
---|
1061 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1062 | raise ValidationError(self.error_message)
|
---|
1063 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX.']
|
---|
1064 | ----------------------------------------------------------------------
|
---|
1065 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1066 | Failed example:
|
---|
1067 | f.clean('205401')
|
---|
1068 | Expected:
|
---|
1069 | Traceback (most recent call last):
|
---|
1070 | ...
|
---|
1071 | ValidationError: [u'Enter a zip code in the format XXXXX.']
|
---|
1072 | Got:
|
---|
1073 | Traceback (most recent call last):
|
---|
1074 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1075 | compileflags, 1) in test.globs
|
---|
1076 | File "<doctest regressiontests.forms.tests.__test__.localflavor[179]>", line 1, in ?
|
---|
1077 | f.clean('205401')
|
---|
1078 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1079 | raise ValidationError(self.error_message)
|
---|
1080 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX.']
|
---|
1081 | ----------------------------------------------------------------------
|
---|
1082 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1083 | Failed example:
|
---|
1084 | f.clean('101010-0102')
|
---|
1085 | Expected:
|
---|
1086 | Traceback (most recent call last):
|
---|
1087 | ...
|
---|
1088 | ValidationError: [u'Enter a valid Finnish social security number.']
|
---|
1089 | Got:
|
---|
1090 | Traceback (most recent call last):
|
---|
1091 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1092 | compileflags, 1) in test.globs
|
---|
1093 | File "<doctest regressiontests.forms.tests.__test__.localflavor[190]>", line 1, in ?
|
---|
1094 | f.clean('101010-0102')
|
---|
1095 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/fi/forms.py", line 45, in clean
|
---|
1096 | raise ValidationError(ugettext('Enter a valid Finnish social security number.'))
|
---|
1097 | ValidationError: [u'Introduzca un n\xfamero de seguro social finland\xe9s v\xe1lido.']
|
---|
1098 | ----------------------------------------------------------------------
|
---|
1099 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1100 | Failed example:
|
---|
1101 | f.clean('10a010-0101')
|
---|
1102 | Expected:
|
---|
1103 | Traceback (most recent call last):
|
---|
1104 | ...
|
---|
1105 | ValidationError: [u'Enter a valid Finnish social security number.']
|
---|
1106 | Got:
|
---|
1107 | Traceback (most recent call last):
|
---|
1108 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1109 | compileflags, 1) in test.globs
|
---|
1110 | File "<doctest regressiontests.forms.tests.__test__.localflavor[191]>", line 1, in ?
|
---|
1111 | f.clean('10a010-0101')
|
---|
1112 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/fi/forms.py", line 40, in clean
|
---|
1113 | raise ValidationError(ugettext('Enter a valid Finnish social security number.'))
|
---|
1114 | ValidationError: [u'Introduzca un n\xfamero de seguro social finland\xe9s v\xe1lido.']
|
---|
1115 | ----------------------------------------------------------------------
|
---|
1116 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1117 | Failed example:
|
---|
1118 | f.clean('101010-0\xe401')
|
---|
1119 | Expected:
|
---|
1120 | Traceback (most recent call last):
|
---|
1121 | ...
|
---|
1122 | ValidationError: [u'Enter a valid Finnish social security number.']
|
---|
1123 | Got:
|
---|
1124 | Traceback (most recent call last):
|
---|
1125 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1126 | compileflags, 1) in test.globs
|
---|
1127 | File "<doctest regressiontests.forms.tests.__test__.localflavor[192]>", line 1, in ?
|
---|
1128 | f.clean('101010-0\xe401')
|
---|
1129 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/fi/forms.py", line 40, in clean
|
---|
1130 | raise ValidationError(ugettext('Enter a valid Finnish social security number.'))
|
---|
1131 | ValidationError: [u'Introduzca un n\xfamero de seguro social finland\xe9s v\xe1lido.']
|
---|
1132 | ----------------------------------------------------------------------
|
---|
1133 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1134 | Failed example:
|
---|
1135 | f.clean('101010b0101')
|
---|
1136 | Expected:
|
---|
1137 | Traceback (most recent call last):
|
---|
1138 | ...
|
---|
1139 | ValidationError: [u'Enter a valid Finnish social security number.']
|
---|
1140 | Got:
|
---|
1141 | Traceback (most recent call last):
|
---|
1142 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1143 | compileflags, 1) in test.globs
|
---|
1144 | File "<doctest regressiontests.forms.tests.__test__.localflavor[193]>", line 1, in ?
|
---|
1145 | f.clean('101010b0101')
|
---|
1146 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/fi/forms.py", line 40, in clean
|
---|
1147 | raise ValidationError(ugettext('Enter a valid Finnish social security number.'))
|
---|
1148 | ValidationError: [u'Introduzca un n\xfamero de seguro social finland\xe9s v\xe1lido.']
|
---|
1149 | ----------------------------------------------------------------------
|
---|
1150 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1151 | Failed example:
|
---|
1152 | f.clean('')
|
---|
1153 | Expected:
|
---|
1154 | Traceback (most recent call last):
|
---|
1155 | ...
|
---|
1156 | ValidationError: [u'This field is required.']
|
---|
1157 | Got:
|
---|
1158 | Traceback (most recent call last):
|
---|
1159 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1160 | compileflags, 1) in test.globs
|
---|
1161 | File "<doctest regressiontests.forms.tests.__test__.localflavor[194]>", line 1, in ?
|
---|
1162 | f.clean('')
|
---|
1163 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/fi/forms.py", line 27, in clean
|
---|
1164 | super(FISocialSecurityNumber, self).clean(value)
|
---|
1165 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
1166 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
1167 | ValidationError: [u'Este campo es obligatorio.']
|
---|
1168 | ----------------------------------------------------------------------
|
---|
1169 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1170 | Failed example:
|
---|
1171 | f.clean(None)
|
---|
1172 | Expected:
|
---|
1173 | Traceback (most recent call last):
|
---|
1174 | ...
|
---|
1175 | ValidationError: [u'This field is required.']
|
---|
1176 | Got:
|
---|
1177 | Traceback (most recent call last):
|
---|
1178 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1179 | compileflags, 1) in test.globs
|
---|
1180 | File "<doctest regressiontests.forms.tests.__test__.localflavor[195]>", line 1, in ?
|
---|
1181 | f.clean(None)
|
---|
1182 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/fi/forms.py", line 27, in clean
|
---|
1183 | super(FISocialSecurityNumber, self).clean(value)
|
---|
1184 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
1185 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
1186 | ValidationError: [u'Este campo es obligatorio.']
|
---|
1187 | ----------------------------------------------------------------------
|
---|
1188 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1189 | Failed example:
|
---|
1190 | f.clean('12345_123')
|
---|
1191 | Expected:
|
---|
1192 | Traceback (most recent call last):
|
---|
1193 | ...
|
---|
1194 | ValidationError: [u'Enter a zip code in the format XXXXX-XXX.']
|
---|
1195 | Got:
|
---|
1196 | Traceback (most recent call last):
|
---|
1197 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1198 | compileflags, 1) in test.globs
|
---|
1199 | File "<doctest regressiontests.forms.tests.__test__.localflavor[203]>", line 1, in ?
|
---|
1200 | f.clean('12345_123')
|
---|
1201 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1202 | raise ValidationError(self.error_message)
|
---|
1203 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXX-XXXX.']
|
---|
1204 | ----------------------------------------------------------------------
|
---|
1205 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1206 | Failed example:
|
---|
1207 | f.clean('1234-123')
|
---|
1208 | Expected:
|
---|
1209 | Traceback (most recent call last):
|
---|
1210 | ...
|
---|
1211 | ValidationError: [u'Enter a zip code in the format XXXXX-XXX.']
|
---|
1212 | Got:
|
---|
1213 | Traceback (most recent call last):
|
---|
1214 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1215 | compileflags, 1) in test.globs
|
---|
1216 | File "<doctest regressiontests.forms.tests.__test__.localflavor[204]>", line 1, in ?
|
---|
1217 | f.clean('1234-123')
|
---|
1218 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1219 | raise ValidationError(self.error_message)
|
---|
1220 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXX-XXXX.']
|
---|
1221 | ----------------------------------------------------------------------
|
---|
1222 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1223 | Failed example:
|
---|
1224 | f.clean('abcde-abc')
|
---|
1225 | Expected:
|
---|
1226 | Traceback (most recent call last):
|
---|
1227 | ...
|
---|
1228 | ValidationError: [u'Enter a zip code in the format XXXXX-XXX.']
|
---|
1229 | Got:
|
---|
1230 | Traceback (most recent call last):
|
---|
1231 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1232 | compileflags, 1) in test.globs
|
---|
1233 | File "<doctest regressiontests.forms.tests.__test__.localflavor[205]>", line 1, in ?
|
---|
1234 | f.clean('abcde-abc')
|
---|
1235 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1236 | raise ValidationError(self.error_message)
|
---|
1237 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXX-XXXX.']
|
---|
1238 | ----------------------------------------------------------------------
|
---|
1239 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1240 | Failed example:
|
---|
1241 | f.clean('12345-')
|
---|
1242 | Expected:
|
---|
1243 | Traceback (most recent call last):
|
---|
1244 | ...
|
---|
1245 | ValidationError: [u'Enter a zip code in the format XXXXX-XXX.']
|
---|
1246 | Got:
|
---|
1247 | Traceback (most recent call last):
|
---|
1248 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1249 | compileflags, 1) in test.globs
|
---|
1250 | File "<doctest regressiontests.forms.tests.__test__.localflavor[206]>", line 1, in ?
|
---|
1251 | f.clean('12345-')
|
---|
1252 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1253 | raise ValidationError(self.error_message)
|
---|
1254 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXX-XXXX.']
|
---|
1255 | ----------------------------------------------------------------------
|
---|
1256 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1257 | Failed example:
|
---|
1258 | f.clean('-123')
|
---|
1259 | Expected:
|
---|
1260 | Traceback (most recent call last):
|
---|
1261 | ...
|
---|
1262 | ValidationError: [u'Enter a zip code in the format XXXXX-XXX.']
|
---|
1263 | Got:
|
---|
1264 | Traceback (most recent call last):
|
---|
1265 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1266 | compileflags, 1) in test.globs
|
---|
1267 | File "<doctest regressiontests.forms.tests.__test__.localflavor[207]>", line 1, in ?
|
---|
1268 | f.clean('-123')
|
---|
1269 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1270 | raise ValidationError(self.error_message)
|
---|
1271 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXX-XXXX.']
|
---|
1272 | ----------------------------------------------------------------------
|
---|
1273 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1274 | Failed example:
|
---|
1275 | f.clean('')
|
---|
1276 | Expected:
|
---|
1277 | Traceback (most recent call last):
|
---|
1278 | ...
|
---|
1279 | ValidationError: [u'This field is required.']
|
---|
1280 | Got:
|
---|
1281 | Traceback (most recent call last):
|
---|
1282 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1283 | compileflags, 1) in test.globs
|
---|
1284 | File "<doctest regressiontests.forms.tests.__test__.localflavor[208]>", line 1, in ?
|
---|
1285 | f.clean('')
|
---|
1286 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
1287 | value = super(RegexField, self).clean(value)
|
---|
1288 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
1289 | super(CharField, self).clean(value)
|
---|
1290 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
1291 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
1292 | ValidationError: [u'Este campo es obligatorio.']
|
---|
1293 | ----------------------------------------------------------------------
|
---|
1294 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1295 | Failed example:
|
---|
1296 | f.clean(None)
|
---|
1297 | Expected:
|
---|
1298 | Traceback (most recent call last):
|
---|
1299 | ...
|
---|
1300 | ValidationError: [u'This field is required.']
|
---|
1301 | Got:
|
---|
1302 | Traceback (most recent call last):
|
---|
1303 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1304 | compileflags, 1) in test.globs
|
---|
1305 | File "<doctest regressiontests.forms.tests.__test__.localflavor[209]>", line 1, in ?
|
---|
1306 | f.clean(None)
|
---|
1307 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
1308 | value = super(RegexField, self).clean(value)
|
---|
1309 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
1310 | super(CharField, self).clean(value)
|
---|
1311 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
1312 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
1313 | ValidationError: [u'Este campo es obligatorio.']
|
---|
1314 | ----------------------------------------------------------------------
|
---|
1315 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1316 | Failed example:
|
---|
1317 | f.clean('-123')
|
---|
1318 | Expected:
|
---|
1319 | Traceback (most recent call last):
|
---|
1320 | ...
|
---|
1321 | ValidationError: [u'Enter a zip code in the format XXXXX-XXX.']
|
---|
1322 | Got:
|
---|
1323 | Traceback (most recent call last):
|
---|
1324 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1325 | compileflags, 1) in test.globs
|
---|
1326 | File "<doctest regressiontests.forms.tests.__test__.localflavor[213]>", line 1, in ?
|
---|
1327 | f.clean('-123')
|
---|
1328 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1329 | raise ValidationError(self.error_message)
|
---|
1330 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXX-XXXX.']
|
---|
1331 | ----------------------------------------------------------------------
|
---|
1332 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1333 | Failed example:
|
---|
1334 | f.clean('12345-')
|
---|
1335 | Expected:
|
---|
1336 | Traceback (most recent call last):
|
---|
1337 | ...
|
---|
1338 | ValidationError: [u'Enter a zip code in the format XXXXX-XXX.']
|
---|
1339 | Got:
|
---|
1340 | Traceback (most recent call last):
|
---|
1341 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1342 | compileflags, 1) in test.globs
|
---|
1343 | File "<doctest regressiontests.forms.tests.__test__.localflavor[214]>", line 1, in ?
|
---|
1344 | f.clean('12345-')
|
---|
1345 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1346 | raise ValidationError(self.error_message)
|
---|
1347 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXX-XXXX.']
|
---|
1348 | ----------------------------------------------------------------------
|
---|
1349 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1350 | Failed example:
|
---|
1351 | f.clean('abcde-abc')
|
---|
1352 | Expected:
|
---|
1353 | Traceback (most recent call last):
|
---|
1354 | ...
|
---|
1355 | ValidationError: [u'Enter a zip code in the format XXXXX-XXX.']
|
---|
1356 | Got:
|
---|
1357 | Traceback (most recent call last):
|
---|
1358 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1359 | compileflags, 1) in test.globs
|
---|
1360 | File "<doctest regressiontests.forms.tests.__test__.localflavor[215]>", line 1, in ?
|
---|
1361 | f.clean('abcde-abc')
|
---|
1362 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1363 | raise ValidationError(self.error_message)
|
---|
1364 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXX-XXXX.']
|
---|
1365 | ----------------------------------------------------------------------
|
---|
1366 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1367 | Failed example:
|
---|
1368 | f.clean('1234-123')
|
---|
1369 | Expected:
|
---|
1370 | Traceback (most recent call last):
|
---|
1371 | ...
|
---|
1372 | ValidationError: [u'Enter a zip code in the format XXXXX-XXX.']
|
---|
1373 | Got:
|
---|
1374 | Traceback (most recent call last):
|
---|
1375 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1376 | compileflags, 1) in test.globs
|
---|
1377 | File "<doctest regressiontests.forms.tests.__test__.localflavor[216]>", line 1, in ?
|
---|
1378 | f.clean('1234-123')
|
---|
1379 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1380 | raise ValidationError(self.error_message)
|
---|
1381 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXX-XXXX.']
|
---|
1382 | ----------------------------------------------------------------------
|
---|
1383 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1384 | Failed example:
|
---|
1385 | f.clean('12345_123')
|
---|
1386 | Expected:
|
---|
1387 | Traceback (most recent call last):
|
---|
1388 | ...
|
---|
1389 | ValidationError: [u'Enter a zip code in the format XXXXX-XXX.']
|
---|
1390 | Got:
|
---|
1391 | Traceback (most recent call last):
|
---|
1392 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1393 | compileflags, 1) in test.globs
|
---|
1394 | File "<doctest regressiontests.forms.tests.__test__.localflavor[217]>", line 1, in ?
|
---|
1395 | f.clean('12345_123')
|
---|
1396 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1397 | raise ValidationError(self.error_message)
|
---|
1398 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXX-XXXX.']
|
---|
1399 | ----------------------------------------------------------------------
|
---|
1400 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1401 | Failed example:
|
---|
1402 | f.clean('')
|
---|
1403 | Expected:
|
---|
1404 | Traceback (most recent call last):
|
---|
1405 | ...
|
---|
1406 | ValidationError: [u'This field is required.']
|
---|
1407 | Got:
|
---|
1408 | Traceback (most recent call last):
|
---|
1409 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1410 | compileflags, 1) in test.globs
|
---|
1411 | File "<doctest regressiontests.forms.tests.__test__.localflavor[221]>", line 1, in ?
|
---|
1412 | f.clean('')
|
---|
1413 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 125, in clean
|
---|
1414 | value = super(BRCNPJField, self).clean(value)
|
---|
1415 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
1416 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
1417 | ValidationError: [u'Este campo es obligatorio.']
|
---|
1418 | ----------------------------------------------------------------------
|
---|
1419 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1420 | Failed example:
|
---|
1421 | f.clean('12-345-678/9012-10')
|
---|
1422 | Expected:
|
---|
1423 | Traceback (most recent call last):
|
---|
1424 | ...
|
---|
1425 | ValidationError: [u'Invalid CNPJ number.']
|
---|
1426 | Got:
|
---|
1427 | Traceback (most recent call last):
|
---|
1428 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1429 | compileflags, 1) in test.globs
|
---|
1430 | File "<doctest regressiontests.forms.tests.__test__.localflavor[222]>", line 1, in ?
|
---|
1431 | f.clean('12-345-678/9012-10')
|
---|
1432 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 147, in clean
|
---|
1433 | raise ValidationError(_("Invalid CNPJ number."))
|
---|
1434 | ValidationError: [u'N\xfamero CNPJ inv\xe1lido']
|
---|
1435 | ----------------------------------------------------------------------
|
---|
1436 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1437 | Failed example:
|
---|
1438 | f.clean('12.345.678/9012-10')
|
---|
1439 | Expected:
|
---|
1440 | Traceback (most recent call last):
|
---|
1441 | ...
|
---|
1442 | ValidationError: [u'Invalid CNPJ number.']
|
---|
1443 | Got:
|
---|
1444 | Traceback (most recent call last):
|
---|
1445 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1446 | compileflags, 1) in test.globs
|
---|
1447 | File "<doctest regressiontests.forms.tests.__test__.localflavor[223]>", line 1, in ?
|
---|
1448 | f.clean('12.345.678/9012-10')
|
---|
1449 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 147, in clean
|
---|
1450 | raise ValidationError(_("Invalid CNPJ number."))
|
---|
1451 | ValidationError: [u'N\xfamero CNPJ inv\xe1lido']
|
---|
1452 | ----------------------------------------------------------------------
|
---|
1453 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1454 | Failed example:
|
---|
1455 | f.clean('12345678/9012-10')
|
---|
1456 | Expected:
|
---|
1457 | Traceback (most recent call last):
|
---|
1458 | ...
|
---|
1459 | ValidationError: [u'Invalid CNPJ number.']
|
---|
1460 | Got:
|
---|
1461 | Traceback (most recent call last):
|
---|
1462 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1463 | compileflags, 1) in test.globs
|
---|
1464 | File "<doctest regressiontests.forms.tests.__test__.localflavor[224]>", line 1, in ?
|
---|
1465 | f.clean('12345678/9012-10')
|
---|
1466 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 147, in clean
|
---|
1467 | raise ValidationError(_("Invalid CNPJ number."))
|
---|
1468 | ValidationError: [u'N\xfamero CNPJ inv\xe1lido']
|
---|
1469 | ----------------------------------------------------------------------
|
---|
1470 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1471 | Failed example:
|
---|
1472 | f.clean('')
|
---|
1473 | Expected:
|
---|
1474 | Traceback (most recent call last):
|
---|
1475 | ...
|
---|
1476 | ValidationError: [u'This field is required.']
|
---|
1477 | Got:
|
---|
1478 | Traceback (most recent call last):
|
---|
1479 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1480 | compileflags, 1) in test.globs
|
---|
1481 | File "<doctest regressiontests.forms.tests.__test__.localflavor[233]>", line 1, in ?
|
---|
1482 | f.clean('')
|
---|
1483 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 94, in clean
|
---|
1484 | value = super(BRCPFField, self).clean(value)
|
---|
1485 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
1486 | super(CharField, self).clean(value)
|
---|
1487 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
1488 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
1489 | ValidationError: [u'Este campo es obligatorio.']
|
---|
1490 | ----------------------------------------------------------------------
|
---|
1491 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1492 | Failed example:
|
---|
1493 | f.clean(None)
|
---|
1494 | Expected:
|
---|
1495 | Traceback (most recent call last):
|
---|
1496 | ...
|
---|
1497 | ValidationError: [u'This field is required.']
|
---|
1498 | Got:
|
---|
1499 | Traceback (most recent call last):
|
---|
1500 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1501 | compileflags, 1) in test.globs
|
---|
1502 | File "<doctest regressiontests.forms.tests.__test__.localflavor[234]>", line 1, in ?
|
---|
1503 | f.clean(None)
|
---|
1504 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 94, in clean
|
---|
1505 | value = super(BRCPFField, self).clean(value)
|
---|
1506 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
1507 | super(CharField, self).clean(value)
|
---|
1508 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
1509 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
1510 | ValidationError: [u'Este campo es obligatorio.']
|
---|
1511 | ----------------------------------------------------------------------
|
---|
1512 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1513 | Failed example:
|
---|
1514 | f.clean('489.294.654-54')
|
---|
1515 | Expected:
|
---|
1516 | Traceback (most recent call last):
|
---|
1517 | ...
|
---|
1518 | ValidationError: [u'Invalid CPF number.']
|
---|
1519 | Got:
|
---|
1520 | Traceback (most recent call last):
|
---|
1521 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1522 | compileflags, 1) in test.globs
|
---|
1523 | File "<doctest regressiontests.forms.tests.__test__.localflavor[235]>", line 1, in ?
|
---|
1524 | f.clean('489.294.654-54')
|
---|
1525 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 115, in clean
|
---|
1526 | raise ValidationError(_("Invalid CPF number."))
|
---|
1527 | ValidationError: [u'N\xfamero CPF inv\xe1lido.']
|
---|
1528 | ----------------------------------------------------------------------
|
---|
1529 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1530 | Failed example:
|
---|
1531 | f.clean('295.669.575-98')
|
---|
1532 | Expected:
|
---|
1533 | Traceback (most recent call last):
|
---|
1534 | ...
|
---|
1535 | ValidationError: [u'Invalid CPF number.']
|
---|
1536 | Got:
|
---|
1537 | Traceback (most recent call last):
|
---|
1538 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1539 | compileflags, 1) in test.globs
|
---|
1540 | File "<doctest regressiontests.forms.tests.__test__.localflavor[236]>", line 1, in ?
|
---|
1541 | f.clean('295.669.575-98')
|
---|
1542 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 115, in clean
|
---|
1543 | raise ValidationError(_("Invalid CPF number."))
|
---|
1544 | ValidationError: [u'N\xfamero CPF inv\xe1lido.']
|
---|
1545 | ----------------------------------------------------------------------
|
---|
1546 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1547 | Failed example:
|
---|
1548 | f.clean('539.315.127-22')
|
---|
1549 | Expected:
|
---|
1550 | Traceback (most recent call last):
|
---|
1551 | ...
|
---|
1552 | ValidationError: [u'Invalid CPF number.']
|
---|
1553 | Got:
|
---|
1554 | Traceback (most recent call last):
|
---|
1555 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1556 | compileflags, 1) in test.globs
|
---|
1557 | File "<doctest regressiontests.forms.tests.__test__.localflavor[237]>", line 1, in ?
|
---|
1558 | f.clean('539.315.127-22')
|
---|
1559 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 115, in clean
|
---|
1560 | raise ValidationError(_("Invalid CPF number."))
|
---|
1561 | ValidationError: [u'N\xfamero CPF inv\xe1lido.']
|
---|
1562 | ----------------------------------------------------------------------
|
---|
1563 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1564 | Failed example:
|
---|
1565 | f.clean('375.788.573-XX')
|
---|
1566 | Expected:
|
---|
1567 | Traceback (most recent call last):
|
---|
1568 | ...
|
---|
1569 | ValidationError: [u'This field requires only numbers.']
|
---|
1570 | Got:
|
---|
1571 | Traceback (most recent call last):
|
---|
1572 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1573 | compileflags, 1) in test.globs
|
---|
1574 | File "<doctest regressiontests.forms.tests.__test__.localflavor[242]>", line 1, in ?
|
---|
1575 | f.clean('375.788.573-XX')
|
---|
1576 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 103, in clean
|
---|
1577 | raise ValidationError(_("This field requires only numbers."))
|
---|
1578 | ValidationError: [u'Este campo s\xf3lo acepta n\xfameros.']
|
---|
1579 | ----------------------------------------------------------------------
|
---|
1580 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1581 | Failed example:
|
---|
1582 | f.clean('375.788.573-000')
|
---|
1583 | Expected:
|
---|
1584 | Traceback (most recent call last):
|
---|
1585 | ...
|
---|
1586 | ValidationError: [u'Ensure this value has at most 14 characters (it has 15).']
|
---|
1587 | Got:
|
---|
1588 | Traceback (most recent call last):
|
---|
1589 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1590 | compileflags, 1) in test.globs
|
---|
1591 | File "<doctest regressiontests.forms.tests.__test__.localflavor[243]>", line 1, in ?
|
---|
1592 | f.clean('375.788.573-000')
|
---|
1593 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 94, in clean
|
---|
1594 | value = super(BRCPFField, self).clean(value)
|
---|
1595 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 123, in clean
|
---|
1596 | raise ValidationError(ugettext(u'Ensure this value has at most %(max)d characters (it has %(length)d).') % {'max': self.max_length, 'length': value_length})
|
---|
1597 | ValidationError: [u'Aseg\xfarese de que su texto tiene a lo m\xe1s 14 caracteres (actualmente tiene 15).']
|
---|
1598 | ----------------------------------------------------------------------
|
---|
1599 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1600 | Failed example:
|
---|
1601 | f.clean('123.456.78')
|
---|
1602 | Expected:
|
---|
1603 | Traceback (most recent call last):
|
---|
1604 | ...
|
---|
1605 | ValidationError: [u'Ensure this value has at least 11 characters (it has 10).']
|
---|
1606 | Got:
|
---|
1607 | Traceback (most recent call last):
|
---|
1608 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1609 | compileflags, 1) in test.globs
|
---|
1610 | File "<doctest regressiontests.forms.tests.__test__.localflavor[244]>", line 1, in ?
|
---|
1611 | f.clean('123.456.78')
|
---|
1612 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 94, in clean
|
---|
1613 | value = super(BRCPFField, self).clean(value)
|
---|
1614 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 125, in clean
|
---|
1615 | raise ValidationError(ugettext(u'Ensure this value has at least %(min)d characters (it has %(length)d).') % {'min': self.min_length, 'length': value_length})
|
---|
1616 | ValidationError: [u'Aseg\xfarese de que su texto tiene al menos 11 caracteres (actualmente tiene 10).']
|
---|
1617 | ----------------------------------------------------------------------
|
---|
1618 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1619 | Failed example:
|
---|
1620 | f.clean('123456789555')
|
---|
1621 | Expected:
|
---|
1622 | Traceback (most recent call last):
|
---|
1623 | ...
|
---|
1624 | ValidationError: [u'This field requires at most 11 digits or 14 characters.']
|
---|
1625 | Got:
|
---|
1626 | Traceback (most recent call last):
|
---|
1627 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1628 | compileflags, 1) in test.globs
|
---|
1629 | File "<doctest regressiontests.forms.tests.__test__.localflavor[245]>", line 1, in ?
|
---|
1630 | f.clean('123456789555')
|
---|
1631 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 105, in clean
|
---|
1632 | raise ValidationError(_("This field requires at most 11 digits or 14 characters."))
|
---|
1633 | ValidationError: [u'Este campo necesita al menos 11 o 14 caracteres']
|
---|
1634 | ----------------------------------------------------------------------
|
---|
1635 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1636 | Failed example:
|
---|
1637 | f.clean(None)
|
---|
1638 | Expected:
|
---|
1639 | Traceback (most recent call last):
|
---|
1640 | ...
|
---|
1641 | ValidationError: [u'This field is required.']
|
---|
1642 | Got:
|
---|
1643 | Traceback (most recent call last):
|
---|
1644 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1645 | compileflags, 1) in test.globs
|
---|
1646 | File "<doctest regressiontests.forms.tests.__test__.localflavor[259]>", line 1, in ?
|
---|
1647 | f.clean(None)
|
---|
1648 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 28, in clean
|
---|
1649 | super(BRPhoneNumberField, self).clean(value)
|
---|
1650 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
1651 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
1652 | ValidationError: [u'Este campo es obligatorio.']
|
---|
1653 | ----------------------------------------------------------------------
|
---|
1654 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1655 | Failed example:
|
---|
1656 | f.clean('')
|
---|
1657 | Expected:
|
---|
1658 | Traceback (most recent call last):
|
---|
1659 | ...
|
---|
1660 | ValidationError: [u'This field is required.']
|
---|
1661 | Got:
|
---|
1662 | Traceback (most recent call last):
|
---|
1663 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1664 | compileflags, 1) in test.globs
|
---|
1665 | File "<doctest regressiontests.forms.tests.__test__.localflavor[260]>", line 1, in ?
|
---|
1666 | f.clean('')
|
---|
1667 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 28, in clean
|
---|
1668 | super(BRPhoneNumberField, self).clean(value)
|
---|
1669 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
1670 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
1671 | ValidationError: [u'Este campo es obligatorio.']
|
---|
1672 | ----------------------------------------------------------------------
|
---|
1673 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1674 | Failed example:
|
---|
1675 | f.clean('')
|
---|
1676 | Expected:
|
---|
1677 | Traceback (most recent call last):
|
---|
1678 | ...
|
---|
1679 | ValidationError: [u'This field is required.']
|
---|
1680 | Got:
|
---|
1681 | Traceback (most recent call last):
|
---|
1682 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1683 | compileflags, 1) in test.globs
|
---|
1684 | File "<doctest regressiontests.forms.tests.__test__.localflavor[275]>", line 1, in ?
|
---|
1685 | f.clean('')
|
---|
1686 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 60, in clean
|
---|
1687 | value = super(BRStateChoiceField, self).clean(value)
|
---|
1688 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
1689 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
1690 | ValidationError: [u'Este campo es obligatorio.']
|
---|
1691 | ----------------------------------------------------------------------
|
---|
1692 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1693 | Failed example:
|
---|
1694 | f.clean('pr')
|
---|
1695 | Expected:
|
---|
1696 | Traceback (most recent call last):
|
---|
1697 | ...
|
---|
1698 | ValidationError: [u'Select a valid brazilian state. That state is not one of the available states.']
|
---|
1699 | Got:
|
---|
1700 | Traceback (most recent call last):
|
---|
1701 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1702 | compileflags, 1) in test.globs
|
---|
1703 | File "<doctest regressiontests.forms.tests.__test__.localflavor[276]>", line 1, in ?
|
---|
1704 | f.clean('pr')
|
---|
1705 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/br/forms.py", line 68, in clean
|
---|
1706 | raise ValidationError(_(u'Select a valid brazilian state.'
|
---|
1707 | ValidationError: [u'Seleccione un estado brasile\xf1o v\xe1lido. Este estado no es uno de los estados disponibles.']
|
---|
1708 | ----------------------------------------------------------------------
|
---|
1709 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1710 | Failed example:
|
---|
1711 | f.clean(' 99423')
|
---|
1712 | Expected:
|
---|
1713 | Traceback (most recent call last):
|
---|
1714 | ...
|
---|
1715 | ValidationError: [u'Enter a zip code in the format XXXXX.']
|
---|
1716 | Got:
|
---|
1717 | Traceback (most recent call last):
|
---|
1718 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1719 | compileflags, 1) in test.globs
|
---|
1720 | File "<doctest regressiontests.forms.tests.__test__.localflavor[280]>", line 1, in ?
|
---|
1721 | f.clean(' 99423')
|
---|
1722 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1723 | raise ValidationError(self.error_message)
|
---|
1724 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX.']
|
---|
1725 | ----------------------------------------------------------------------
|
---|
1726 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1727 | Failed example:
|
---|
1728 | w.render('states', 'TH')
|
---|
1729 | Expected:
|
---|
1730 | u'<select name="states">\n<option value="BW">Baden-Wuerttemberg</option>\n<option value="BY">Bavaria</option>\n<option value="BE">Berlin</option>\n<option value="BB">Brandenburg</option>\n<option value="HB">Bremen</option>\n<option value="HH">Hamburg</option>\n<option value="HE">Hessen</option>\n<option value="MV">Mecklenburg-Western Pomerania</option>\n<option value="NI">Lower Saxony</option>\n<option value="NW">North Rhine-Westphalia</option>\n<option value="RP">Rhineland-Palatinate</option>\n<option value="SL">Saarland</option>\n<option value="SN">Saxony</option>\n<option value="ST">Saxony-Anhalt</option>\n<option value="SH">Schleswig-Holstein</option>\n<option value="TH" selected="selected">Thuringia</option>\n</select>'
|
---|
1731 | Got:
|
---|
1732 | u'<select name="states">\n<option value="BW">Baden-Wuerttemberg</option>\n<option value="BY">Bavaria</option>\n<option value="BE">Berl\xedn</option>\n<option value="BB">Brandenburg</option>\n<option value="HB">Bremen</option>\n<option value="HH">Hamburg</option>\n<option value="HE">Hessen</option>\n<option value="MV">Mecklenburg-Western Pomerania</option>\n<option value="NI">Lower Saxony</option>\n<option value="NW">North Rhine-Westphalia</option>\n<option value="RP">Rhineland-Palatinate</option>\n<option value="SL">Saarland</option>\n<option value="SN">Saxony</option>\n<option value="ST">Saxony-Anhalt</option>\n<option value="SH">Schleswig-Holstein</option>\n<option value="TH" selected="selected">Thuringia</option>\n</select>'
|
---|
1733 | ----------------------------------------------------------------------
|
---|
1734 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1735 | Failed example:
|
---|
1736 | f.clean('0434657485D-6407276-0508137-9')
|
---|
1737 | Expected:
|
---|
1738 | Traceback (most recent call last):
|
---|
1739 | ...
|
---|
1740 | ValidationError: [u'Enter a valid German identity card number in XXXXXXXXXXX-XXXXXXX-XXXXXXX-X format.']
|
---|
1741 | Got:
|
---|
1742 | Traceback (most recent call last):
|
---|
1743 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1744 | compileflags, 1) in test.globs
|
---|
1745 | File "<doctest regressiontests.forms.tests.__test__.localflavor[288]>", line 1, in ?
|
---|
1746 | f.clean('0434657485D-6407276-0508137-9')
|
---|
1747 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/de/forms.py", line 77, in clean
|
---|
1748 | raise ValidationError(error_msg)
|
---|
1749 | ValidationError: [u'Introduzca un n\xfamero de tarjeta de identidad de Alemania v\xe1lida en el formato XXXXXXXXXXX-XXXXXXX-XXXXXXX-X.']
|
---|
1750 | ----------------------------------------------------------------------
|
---|
1751 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1752 | Failed example:
|
---|
1753 | f.clean('800x')
|
---|
1754 | Expected:
|
---|
1755 | Traceback (most recent call last):
|
---|
1756 | ...
|
---|
1757 | ValidationError: [u'Enter a zip code in the format XXXX.']
|
---|
1758 | Got:
|
---|
1759 | Traceback (most recent call last):
|
---|
1760 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1761 | compileflags, 1) in test.globs
|
---|
1762 | File "<doctest regressiontests.forms.tests.__test__.localflavor[291]>", line 1, in ?
|
---|
1763 | f.clean('800x')
|
---|
1764 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1765 | raise ValidationError(self.error_message)
|
---|
1766 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXX.']
|
---|
1767 | ----------------------------------------------------------------------
|
---|
1768 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1769 | Failed example:
|
---|
1770 | f.clean('80 00')
|
---|
1771 | Expected:
|
---|
1772 | Traceback (most recent call last):
|
---|
1773 | ...
|
---|
1774 | ValidationError: [u'Enter a zip code in the format XXXX.']
|
---|
1775 | Got:
|
---|
1776 | Traceback (most recent call last):
|
---|
1777 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1778 | compileflags, 1) in test.globs
|
---|
1779 | File "<doctest regressiontests.forms.tests.__test__.localflavor[292]>", line 1, in ?
|
---|
1780 | f.clean('80 00')
|
---|
1781 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1782 | raise ValidationError(self.error_message)
|
---|
1783 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXX.']
|
---|
1784 | ----------------------------------------------------------------------
|
---|
1785 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1786 | Failed example:
|
---|
1787 | f.clean('C1234567<1')
|
---|
1788 | Expected:
|
---|
1789 | Traceback (most recent call last):
|
---|
1790 | ...
|
---|
1791 | ValidationError: [u'Enter a valid Swiss identity or passport card number in X1234567<0 or 1234567890 format.']
|
---|
1792 | Got:
|
---|
1793 | Traceback (most recent call last):
|
---|
1794 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1795 | compileflags, 1) in test.globs
|
---|
1796 | File "<doctest regressiontests.forms.tests.__test__.localflavor[302]>", line 1, in ?
|
---|
1797 | f.clean('C1234567<1')
|
---|
1798 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ch/forms.py", line 106, in clean
|
---|
1799 | raise ValidationError(error_msg)
|
---|
1800 | ValidationError: [u'Introduzca una identificaci\xf3n suiza v\xe1lida o un n\xfamero de pasaporte en el formato X1234567<0 or 1234567890.']
|
---|
1801 | ----------------------------------------------------------------------
|
---|
1802 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1803 | Failed example:
|
---|
1804 | f.clean('2123456701')
|
---|
1805 | Expected:
|
---|
1806 | Traceback (most recent call last):
|
---|
1807 | ...
|
---|
1808 | ValidationError: [u'Enter a valid Swiss identity or passport card number in X1234567<0 or 1234567890 format.']
|
---|
1809 | Got:
|
---|
1810 | Traceback (most recent call last):
|
---|
1811 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1812 | compileflags, 1) in test.globs
|
---|
1813 | File "<doctest regressiontests.forms.tests.__test__.localflavor[304]>", line 1, in ?
|
---|
1814 | f.clean('2123456701')
|
---|
1815 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ch/forms.py", line 106, in clean
|
---|
1816 | raise ValidationError(error_msg)
|
---|
1817 | ValidationError: [u'Introduzca una identificaci\xf3n suiza v\xe1lida o un n\xfamero de pasaporte en el formato X1234567<0 or 1234567890.']
|
---|
1818 | ----------------------------------------------------------------------
|
---|
1819 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1820 | Failed example:
|
---|
1821 | f.clean('abcd')
|
---|
1822 | Expected:
|
---|
1823 | Traceback (most recent call last):
|
---|
1824 | ...
|
---|
1825 | ValidationError: [u'Enter a 4 digit post code.']
|
---|
1826 | Got:
|
---|
1827 | Traceback (most recent call last):
|
---|
1828 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1829 | compileflags, 1) in test.globs
|
---|
1830 | File "<doctest regressiontests.forms.tests.__test__.localflavor[312]>", line 1, in ?
|
---|
1831 | f.clean('abcd')
|
---|
1832 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1833 | raise ValidationError(self.error_message)
|
---|
1834 | ValidationError: [u'Introduzca un c\xf3digo postal de 4 d\xedgitos.']
|
---|
1835 | ----------------------------------------------------------------------
|
---|
1836 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1837 | Failed example:
|
---|
1838 | f.clean('20001')
|
---|
1839 | Expected:
|
---|
1840 | Traceback (most recent call last):
|
---|
1841 | ...
|
---|
1842 | ValidationError: [u'Enter a 4 digit post code.']
|
---|
1843 | Got:
|
---|
1844 | Traceback (most recent call last):
|
---|
1845 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1846 | compileflags, 1) in test.globs
|
---|
1847 | File "<doctest regressiontests.forms.tests.__test__.localflavor[313]>", line 1, in ?
|
---|
1848 | f.clean('20001')
|
---|
1849 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1850 | raise ValidationError(self.error_message)
|
---|
1851 | ValidationError: [u'Introduzca un c\xf3digo postal de 4 d\xedgitos.']
|
---|
1852 | ----------------------------------------------------------------------
|
---|
1853 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1854 | Failed example:
|
---|
1855 | f.clean(None)
|
---|
1856 | Expected:
|
---|
1857 | Traceback (most recent call last):
|
---|
1858 | ...
|
---|
1859 | ValidationError: [u'This field is required.']
|
---|
1860 | Got:
|
---|
1861 | Traceback (most recent call last):
|
---|
1862 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1863 | compileflags, 1) in test.globs
|
---|
1864 | File "<doctest regressiontests.forms.tests.__test__.localflavor[314]>", line 1, in ?
|
---|
1865 | f.clean(None)
|
---|
1866 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
1867 | value = super(RegexField, self).clean(value)
|
---|
1868 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
1869 | super(CharField, self).clean(value)
|
---|
1870 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
1871 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
1872 | ValidationError: [u'Este campo es obligatorio.']
|
---|
1873 | ----------------------------------------------------------------------
|
---|
1874 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1875 | Failed example:
|
---|
1876 | f.clean('')
|
---|
1877 | Expected:
|
---|
1878 | Traceback (most recent call last):
|
---|
1879 | ...
|
---|
1880 | ValidationError: [u'This field is required.']
|
---|
1881 | Got:
|
---|
1882 | Traceback (most recent call last):
|
---|
1883 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1884 | compileflags, 1) in test.globs
|
---|
1885 | File "<doctest regressiontests.forms.tests.__test__.localflavor[315]>", line 1, in ?
|
---|
1886 | f.clean('')
|
---|
1887 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
1888 | value = super(RegexField, self).clean(value)
|
---|
1889 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
1890 | super(CharField, self).clean(value)
|
---|
1891 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
1892 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
1893 | ValidationError: [u'Este campo es obligatorio.']
|
---|
1894 | ----------------------------------------------------------------------
|
---|
1895 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1896 | Failed example:
|
---|
1897 | f.clean('abcd')
|
---|
1898 | Expected:
|
---|
1899 | Traceback (most recent call last):
|
---|
1900 | ...
|
---|
1901 | ValidationError: [u'Enter a 4 digit post code.']
|
---|
1902 | Got:
|
---|
1903 | Traceback (most recent call last):
|
---|
1904 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1905 | compileflags, 1) in test.globs
|
---|
1906 | File "<doctest regressiontests.forms.tests.__test__.localflavor[319]>", line 1, in ?
|
---|
1907 | f.clean('abcd')
|
---|
1908 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1909 | raise ValidationError(self.error_message)
|
---|
1910 | ValidationError: [u'Introduzca un c\xf3digo postal de 4 d\xedgitos.']
|
---|
1911 | ----------------------------------------------------------------------
|
---|
1912 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1913 | Failed example:
|
---|
1914 | f.clean('20001')
|
---|
1915 | Expected:
|
---|
1916 | Traceback (most recent call last):
|
---|
1917 | ...
|
---|
1918 | ValidationError: [u'Enter a 4 digit post code.']
|
---|
1919 | Got:
|
---|
1920 | Traceback (most recent call last):
|
---|
1921 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1922 | compileflags, 1) in test.globs
|
---|
1923 | File "<doctest regressiontests.forms.tests.__test__.localflavor[320]>", line 1, in ?
|
---|
1924 | f.clean('20001')
|
---|
1925 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
1926 | raise ValidationError(self.error_message)
|
---|
1927 | ValidationError: [u'Introduzca un c\xf3digo postal de 4 d\xedgitos.']
|
---|
1928 | ----------------------------------------------------------------------
|
---|
1929 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1930 | Failed example:
|
---|
1931 | f.clean(None)
|
---|
1932 | Expected:
|
---|
1933 | Traceback (most recent call last):
|
---|
1934 | ...
|
---|
1935 | ValidationError: [u'This field is required.']
|
---|
1936 | Got:
|
---|
1937 | Traceback (most recent call last):
|
---|
1938 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1939 | compileflags, 1) in test.globs
|
---|
1940 | File "<doctest regressiontests.forms.tests.__test__.localflavor[334]>", line 1, in ?
|
---|
1941 | f.clean(None)
|
---|
1942 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/au/forms.py", line 27, in clean
|
---|
1943 | super(AUPhoneNumberField, self).clean(value)
|
---|
1944 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
1945 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
1946 | ValidationError: [u'Este campo es obligatorio.']
|
---|
1947 | ----------------------------------------------------------------------
|
---|
1948 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1949 | Failed example:
|
---|
1950 | f.clean('')
|
---|
1951 | Expected:
|
---|
1952 | Traceback (most recent call last):
|
---|
1953 | ...
|
---|
1954 | ValidationError: [u'This field is required.']
|
---|
1955 | Got:
|
---|
1956 | Traceback (most recent call last):
|
---|
1957 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1958 | compileflags, 1) in test.globs
|
---|
1959 | File "<doctest regressiontests.forms.tests.__test__.localflavor[335]>", line 1, in ?
|
---|
1960 | f.clean('')
|
---|
1961 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/au/forms.py", line 27, in clean
|
---|
1962 | super(AUPhoneNumberField, self).clean(value)
|
---|
1963 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
1964 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
1965 | ValidationError: [u'Este campo es obligatorio.']
|
---|
1966 | ----------------------------------------------------------------------
|
---|
1967 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1968 | Failed example:
|
---|
1969 | f.clean('230880343')
|
---|
1970 | Expected:
|
---|
1971 | Traceback (most recent call last):
|
---|
1972 | ...
|
---|
1973 | ValidationError: [u'Ensure this value has at least 10 characters (it has 9).']
|
---|
1974 | Got:
|
---|
1975 | Traceback (most recent call last):
|
---|
1976 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1977 | compileflags, 1) in test.globs
|
---|
1978 | File "<doctest regressiontests.forms.tests.__test__.localflavor[356]>", line 1, in ?
|
---|
1979 | f.clean('230880343')
|
---|
1980 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/is_/forms.py", line 22, in clean
|
---|
1981 | value = super(ISIdNumberField, self).clean(value)
|
---|
1982 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
1983 | value = super(RegexField, self).clean(value)
|
---|
1984 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 125, in clean
|
---|
1985 | raise ValidationError(ugettext(u'Ensure this value has at least %(min)d characters (it has %(length)d).') % {'min': self.min_length, 'length': value_length})
|
---|
1986 | ValidationError: [u'Aseg\xfarese de que su texto tiene al menos 10 caracteres (actualmente tiene 9).']
|
---|
1987 | ----------------------------------------------------------------------
|
---|
1988 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
1989 | Failed example:
|
---|
1990 | f.clean('230880343234')
|
---|
1991 | Expected:
|
---|
1992 | Traceback (most recent call last):
|
---|
1993 | ...
|
---|
1994 | ValidationError: [u'Ensure this value has at most 11 characters (it has 12).']
|
---|
1995 | Got:
|
---|
1996 | Traceback (most recent call last):
|
---|
1997 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
1998 | compileflags, 1) in test.globs
|
---|
1999 | File "<doctest regressiontests.forms.tests.__test__.localflavor[357]>", line 1, in ?
|
---|
2000 | f.clean('230880343234')
|
---|
2001 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/is_/forms.py", line 22, in clean
|
---|
2002 | value = super(ISIdNumberField, self).clean(value)
|
---|
2003 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
2004 | value = super(RegexField, self).clean(value)
|
---|
2005 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 123, in clean
|
---|
2006 | raise ValidationError(ugettext(u'Ensure this value has at most %(max)d characters (it has %(length)d).') % {'max': self.max_length, 'length': value_length})
|
---|
2007 | ValidationError: [u'Aseg\xfarese de que su texto tiene a lo m\xe1s 11 caracteres (actualmente tiene 12).']
|
---|
2008 | ----------------------------------------------------------------------
|
---|
2009 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2010 | Failed example:
|
---|
2011 | f.clean('abcdefghijk')
|
---|
2012 | Expected:
|
---|
2013 | Traceback (most recent call last):
|
---|
2014 | ...
|
---|
2015 | ValidationError: [u'Enter a valid Icelandic identification number. The format is XXXXXX-XXXX.']
|
---|
2016 | Got:
|
---|
2017 | Traceback (most recent call last):
|
---|
2018 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2019 | compileflags, 1) in test.globs
|
---|
2020 | File "<doctest regressiontests.forms.tests.__test__.localflavor[358]>", line 1, in ?
|
---|
2021 | f.clean('abcdefghijk')
|
---|
2022 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/is_/forms.py", line 22, in clean
|
---|
2023 | value = super(ISIdNumberField, self).clean(value)
|
---|
2024 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2025 | raise ValidationError(self.error_message)
|
---|
2026 | ValidationError: [u'Introduzca un n\xfamero de identificaci\xf3n de Islandia v\xe1lido. El formato es XXXXXX-XXXX.']
|
---|
2027 | ----------------------------------------------------------------------
|
---|
2028 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2029 | Failed example:
|
---|
2030 | f.clean('')
|
---|
2031 | Expected:
|
---|
2032 | Traceback (most recent call last):
|
---|
2033 | ...
|
---|
2034 | ValidationError: [u'This field is required.']
|
---|
2035 | Got:
|
---|
2036 | Traceback (most recent call last):
|
---|
2037 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2038 | compileflags, 1) in test.globs
|
---|
2039 | File "<doctest regressiontests.forms.tests.__test__.localflavor[359]>", line 1, in ?
|
---|
2040 | f.clean('')
|
---|
2041 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/is_/forms.py", line 22, in clean
|
---|
2042 | value = super(ISIdNumberField, self).clean(value)
|
---|
2043 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
2044 | value = super(RegexField, self).clean(value)
|
---|
2045 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
2046 | super(CharField, self).clean(value)
|
---|
2047 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
2048 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
2049 | ValidationError: [u'Este campo es obligatorio.']
|
---|
2050 | ----------------------------------------------------------------------
|
---|
2051 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2052 | Failed example:
|
---|
2053 | f.clean(None)
|
---|
2054 | Expected:
|
---|
2055 | Traceback (most recent call last):
|
---|
2056 | ...
|
---|
2057 | ValidationError: [u'This field is required.']
|
---|
2058 | Got:
|
---|
2059 | Traceback (most recent call last):
|
---|
2060 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2061 | compileflags, 1) in test.globs
|
---|
2062 | File "<doctest regressiontests.forms.tests.__test__.localflavor[360]>", line 1, in ?
|
---|
2063 | f.clean(None)
|
---|
2064 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/is_/forms.py", line 22, in clean
|
---|
2065 | value = super(ISIdNumberField, self).clean(value)
|
---|
2066 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
2067 | value = super(RegexField, self).clean(value)
|
---|
2068 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
2069 | super(CharField, self).clean(value)
|
---|
2070 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
2071 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
2072 | ValidationError: [u'Este campo es obligatorio.']
|
---|
2073 | ----------------------------------------------------------------------
|
---|
2074 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2075 | Failed example:
|
---|
2076 | f.clean('2308803439')
|
---|
2077 | Expected:
|
---|
2078 | Traceback (most recent call last):
|
---|
2079 | ...
|
---|
2080 | ValidationError: [u'The Icelandic identification number is not valid.']
|
---|
2081 | Got:
|
---|
2082 | Traceback (most recent call last):
|
---|
2083 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2084 | compileflags, 1) in test.globs
|
---|
2085 | File "<doctest regressiontests.forms.tests.__test__.localflavor[361]>", line 1, in ?
|
---|
2086 | f.clean('2308803439')
|
---|
2087 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/is_/forms.py", line 31, in clean
|
---|
2088 | raise ValidationError(ugettext(u'The Icelandic identification number is not valid.'))
|
---|
2089 | ValidationError: [u'El n\xfamero de identificaci\xf3n de Islandia no es v\xe1lido.']
|
---|
2090 | ----------------------------------------------------------------------
|
---|
2091 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2092 | Failed example:
|
---|
2093 | f.clean('123-456')
|
---|
2094 | Expected:
|
---|
2095 | Traceback (most recent call last):
|
---|
2096 | ...
|
---|
2097 | ValidationError: [u'Enter a valid value.']
|
---|
2098 | Got:
|
---|
2099 | Traceback (most recent call last):
|
---|
2100 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2101 | compileflags, 1) in test.globs
|
---|
2102 | File "<doctest regressiontests.forms.tests.__test__.localflavor[371]>", line 1, in ?
|
---|
2103 | f.clean('123-456')
|
---|
2104 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/is_/forms.py", line 64, in clean
|
---|
2105 | value = super(ISPhoneNumberField, self).clean(value)
|
---|
2106 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2107 | raise ValidationError(self.error_message)
|
---|
2108 | ValidationError: [u'Introduzca un valor correcto.']
|
---|
2109 | ----------------------------------------------------------------------
|
---|
2110 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2111 | Failed example:
|
---|
2112 | f.clean('123456')
|
---|
2113 | Expected:
|
---|
2114 | Traceback (most recent call last):
|
---|
2115 | ...
|
---|
2116 | ValidationError: [u'Ensure this value has at least 7 characters (it has 6).']
|
---|
2117 | Got:
|
---|
2118 | Traceback (most recent call last):
|
---|
2119 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2120 | compileflags, 1) in test.globs
|
---|
2121 | File "<doctest regressiontests.forms.tests.__test__.localflavor[372]>", line 1, in ?
|
---|
2122 | f.clean('123456')
|
---|
2123 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/is_/forms.py", line 64, in clean
|
---|
2124 | value = super(ISPhoneNumberField, self).clean(value)
|
---|
2125 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
2126 | value = super(RegexField, self).clean(value)
|
---|
2127 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 125, in clean
|
---|
2128 | raise ValidationError(ugettext(u'Ensure this value has at least %(min)d characters (it has %(length)d).') % {'min': self.min_length, 'length': value_length})
|
---|
2129 | ValidationError: [u'Aseg\xfarese de que su texto tiene al menos 7 caracteres (actualmente tiene 6).']
|
---|
2130 | ----------------------------------------------------------------------
|
---|
2131 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2132 | Failed example:
|
---|
2133 | f.clean('123456555')
|
---|
2134 | Expected:
|
---|
2135 | Traceback (most recent call last):
|
---|
2136 | ...
|
---|
2137 | ValidationError: [u'Ensure this value has at most 8 characters (it has 9).']
|
---|
2138 | Got:
|
---|
2139 | Traceback (most recent call last):
|
---|
2140 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2141 | compileflags, 1) in test.globs
|
---|
2142 | File "<doctest regressiontests.forms.tests.__test__.localflavor[373]>", line 1, in ?
|
---|
2143 | f.clean('123456555')
|
---|
2144 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/is_/forms.py", line 64, in clean
|
---|
2145 | value = super(ISPhoneNumberField, self).clean(value)
|
---|
2146 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
2147 | value = super(RegexField, self).clean(value)
|
---|
2148 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 123, in clean
|
---|
2149 | raise ValidationError(ugettext(u'Ensure this value has at most %(max)d characters (it has %(length)d).') % {'max': self.max_length, 'length': value_length})
|
---|
2150 | ValidationError: [u'Aseg\xfarese de que su texto tiene a lo m\xe1s 8 caracteres (actualmente tiene 9).']
|
---|
2151 | ----------------------------------------------------------------------
|
---|
2152 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2153 | Failed example:
|
---|
2154 | f.clean('abcdefg')
|
---|
2155 | Expected:
|
---|
2156 | Traceback (most recent call last):
|
---|
2157 | ValidationError: [u'Enter a valid value.']
|
---|
2158 | Got:
|
---|
2159 | Traceback (most recent call last):
|
---|
2160 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2161 | compileflags, 1) in test.globs
|
---|
2162 | File "<doctest regressiontests.forms.tests.__test__.localflavor[374]>", line 1, in ?
|
---|
2163 | f.clean('abcdefg')
|
---|
2164 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/is_/forms.py", line 64, in clean
|
---|
2165 | value = super(ISPhoneNumberField, self).clean(value)
|
---|
2166 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2167 | raise ValidationError(self.error_message)
|
---|
2168 | ValidationError: [u'Introduzca un valor correcto.']
|
---|
2169 | ----------------------------------------------------------------------
|
---|
2170 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2171 | Failed example:
|
---|
2172 | f.clean(' 1234567 ')
|
---|
2173 | Expected:
|
---|
2174 | Traceback (most recent call last):
|
---|
2175 | ...
|
---|
2176 | ValidationError: [u'Ensure this value has at most 8 characters (it has 9).']
|
---|
2177 | Got:
|
---|
2178 | Traceback (most recent call last):
|
---|
2179 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2180 | compileflags, 1) in test.globs
|
---|
2181 | File "<doctest regressiontests.forms.tests.__test__.localflavor[375]>", line 1, in ?
|
---|
2182 | f.clean(' 1234567 ')
|
---|
2183 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/is_/forms.py", line 64, in clean
|
---|
2184 | value = super(ISPhoneNumberField, self).clean(value)
|
---|
2185 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
2186 | value = super(RegexField, self).clean(value)
|
---|
2187 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 123, in clean
|
---|
2188 | raise ValidationError(ugettext(u'Ensure this value has at most %(max)d characters (it has %(length)d).') % {'max': self.max_length, 'length': value_length})
|
---|
2189 | ValidationError: [u'Aseg\xfarese de que su texto tiene a lo m\xe1s 8 caracteres (actualmente tiene 9).']
|
---|
2190 | ----------------------------------------------------------------------
|
---|
2191 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2192 | Failed example:
|
---|
2193 | f.clean(' 12367 ')
|
---|
2194 | Expected:
|
---|
2195 | Traceback (most recent call last):
|
---|
2196 | ...
|
---|
2197 | ValidationError: [u'Enter a valid value.']
|
---|
2198 | Got:
|
---|
2199 | Traceback (most recent call last):
|
---|
2200 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2201 | compileflags, 1) in test.globs
|
---|
2202 | File "<doctest regressiontests.forms.tests.__test__.localflavor[376]>", line 1, in ?
|
---|
2203 | f.clean(' 12367 ')
|
---|
2204 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/is_/forms.py", line 64, in clean
|
---|
2205 | value = super(ISPhoneNumberField, self).clean(value)
|
---|
2206 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2207 | raise ValidationError(self.error_message)
|
---|
2208 | ValidationError: [u'Introduzca un valor correcto.']
|
---|
2209 | ----------------------------------------------------------------------
|
---|
2210 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2211 | Failed example:
|
---|
2212 | f.clean('')
|
---|
2213 | Expected:
|
---|
2214 | Traceback (most recent call last):
|
---|
2215 | ...
|
---|
2216 | ValidationError: [u'This field is required.']
|
---|
2217 | Got:
|
---|
2218 | Traceback (most recent call last):
|
---|
2219 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2220 | compileflags, 1) in test.globs
|
---|
2221 | File "<doctest regressiontests.forms.tests.__test__.localflavor[377]>", line 1, in ?
|
---|
2222 | f.clean('')
|
---|
2223 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/is_/forms.py", line 64, in clean
|
---|
2224 | value = super(ISPhoneNumberField, self).clean(value)
|
---|
2225 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
2226 | value = super(RegexField, self).clean(value)
|
---|
2227 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
2228 | super(CharField, self).clean(value)
|
---|
2229 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
2230 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
2231 | ValidationError: [u'Este campo es obligatorio.']
|
---|
2232 | ----------------------------------------------------------------------
|
---|
2233 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2234 | Failed example:
|
---|
2235 | f.clean(None)
|
---|
2236 | Expected:
|
---|
2237 | Traceback (most recent call last):
|
---|
2238 | ...
|
---|
2239 | ValidationError: [u'This field is required.']
|
---|
2240 | Got:
|
---|
2241 | Traceback (most recent call last):
|
---|
2242 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2243 | compileflags, 1) in test.globs
|
---|
2244 | File "<doctest regressiontests.forms.tests.__test__.localflavor[378]>", line 1, in ?
|
---|
2245 | f.clean(None)
|
---|
2246 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/is_/forms.py", line 64, in clean
|
---|
2247 | value = super(ISPhoneNumberField, self).clean(value)
|
---|
2248 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
2249 | value = super(RegexField, self).clean(value)
|
---|
2250 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
2251 | super(CharField, self).clean(value)
|
---|
2252 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
2253 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
2254 | ValidationError: [u'Este campo es obligatorio.']
|
---|
2255 | ----------------------------------------------------------------------
|
---|
2256 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2257 | Failed example:
|
---|
2258 | rut.clean('11-6')
|
---|
2259 | Expected:
|
---|
2260 | Traceback (most recent call last):
|
---|
2261 | ...
|
---|
2262 | ValidationError: [u'Enter valid a Chilean RUT. The format is XX.XXX.XXX-X.']
|
---|
2263 | Got:
|
---|
2264 | Traceback (most recent call last):
|
---|
2265 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2266 | compileflags, 1) in test.globs
|
---|
2267 | File "<doctest regressiontests.forms.tests.__test__.localflavor[396]>", line 1, in ?
|
---|
2268 | rut.clean('11-6')
|
---|
2269 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/cl/forms.py", line 43, in clean
|
---|
2270 | super(CLRutField, self).clean(value)
|
---|
2271 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2272 | raise ValidationError(self.error_message)
|
---|
2273 | ValidationError: [u'Introduzca un RUT chileno v\xe1lido. El formato es XX.XXX.XXX-X.']
|
---|
2274 | ----------------------------------------------------------------------
|
---|
2275 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2276 | Failed example:
|
---|
2277 | rut.clean('767484100')
|
---|
2278 | Expected:
|
---|
2279 | Traceback (most recent call last):
|
---|
2280 | ...
|
---|
2281 | ValidationError: [u'Enter valid a Chilean RUT. The format is XX.XXX.XXX-X.']
|
---|
2282 | Got:
|
---|
2283 | Traceback (most recent call last):
|
---|
2284 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2285 | compileflags, 1) in test.globs
|
---|
2286 | File "<doctest regressiontests.forms.tests.__test__.localflavor[398]>", line 1, in ?
|
---|
2287 | rut.clean('767484100')
|
---|
2288 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/cl/forms.py", line 43, in clean
|
---|
2289 | super(CLRutField, self).clean(value)
|
---|
2290 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2291 | raise ValidationError(self.error_message)
|
---|
2292 | ValidationError: [u'Introduzca un RUT chileno v\xe1lido. El formato es XX.XXX.XXX-X.']
|
---|
2293 | ----------------------------------------------------------------------
|
---|
2294 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2295 | Failed example:
|
---|
2296 | rut.clean('8.334.6043')
|
---|
2297 | Expected:
|
---|
2298 | Traceback (most recent call last):
|
---|
2299 | ...
|
---|
2300 | ValidationError: [u'Enter valid a Chilean RUT. The format is XX.XXX.XXX-X.']
|
---|
2301 | Got:
|
---|
2302 | Traceback (most recent call last):
|
---|
2303 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2304 | compileflags, 1) in test.globs
|
---|
2305 | File "<doctest regressiontests.forms.tests.__test__.localflavor[400]>", line 1, in ?
|
---|
2306 | rut.clean('8.334.6043')
|
---|
2307 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/cl/forms.py", line 43, in clean
|
---|
2308 | super(CLRutField, self).clean(value)
|
---|
2309 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2310 | raise ValidationError(self.error_message)
|
---|
2311 | ValidationError: [u'Introduzca un RUT chileno v\xe1lido. El formato es XX.XXX.XXX-X.']
|
---|
2312 | ----------------------------------------------------------------------
|
---|
2313 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2314 | Failed example:
|
---|
2315 | rut.clean('76793310-K')
|
---|
2316 | Expected:
|
---|
2317 | Traceback (most recent call last):
|
---|
2318 | ...
|
---|
2319 | ValidationError: [u'Enter valid a Chilean RUT. The format is XX.XXX.XXX-X.']
|
---|
2320 | Got:
|
---|
2321 | Traceback (most recent call last):
|
---|
2322 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2323 | compileflags, 1) in test.globs
|
---|
2324 | File "<doctest regressiontests.forms.tests.__test__.localflavor[401]>", line 1, in ?
|
---|
2325 | rut.clean('76793310-K')
|
---|
2326 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/cl/forms.py", line 43, in clean
|
---|
2327 | super(CLRutField, self).clean(value)
|
---|
2328 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2329 | raise ValidationError(self.error_message)
|
---|
2330 | ValidationError: [u'Introduzca un RUT chileno v\xe1lido. El formato es XX.XXX.XXX-X.']
|
---|
2331 | ----------------------------------------------------------------------
|
---|
2332 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2333 | Failed example:
|
---|
2334 | f.clean('84545x')
|
---|
2335 | Expected:
|
---|
2336 | Traceback (most recent call last):
|
---|
2337 | ...
|
---|
2338 | ValidationError: [u'Enter a postal code in the format XXXXX or XXX XX.']
|
---|
2339 | Got:
|
---|
2340 | Traceback (most recent call last):
|
---|
2341 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2342 | compileflags, 1) in test.globs
|
---|
2343 | File "<doctest regressiontests.forms.tests.__test__.localflavor[407]>", line 1, in ?
|
---|
2344 | f.clean('84545x')
|
---|
2345 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/sk/forms.py", line 40, in clean
|
---|
2346 | v = super(SKPostalCodeField, self).clean(value)
|
---|
2347 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2348 | raise ValidationError(self.error_message)
|
---|
2349 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XXXXX o XXX XX.']
|
---|
2350 | ----------------------------------------------------------------------
|
---|
2351 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2352 | Failed example:
|
---|
2353 | w.render('regions', 'TT')
|
---|
2354 | Expected:
|
---|
2355 | u'<select name="regions">\n<option value="BB">Banska Bystrica region</option>\n<option value="BA">Bratislava region</option>\n<option value="KE">Kosice region</option>\n<option value="NR">Nitra region</option>\n<option value="PO">Presov region</option>\n<option value="TN">Trencin region</option>\n<option value="TT" selected="selected">Trnava region</option>\n<option value="ZA">Zilina region</option>\n</select>'
|
---|
2356 | Got:
|
---|
2357 | u'<select name="regions">\n<option value="BB">Regi\xf3n de Banska Bystrica</option>\n<option value="BA">Regi\xf3n de Bratislava</option>\n<option value="KE">Regi\xf3n de Kosice</option>\n<option value="NR">Regi\xf3n de Nitra</option>\n<option value="PO">Regi\xf3n de Presov</option>\n<option value="TN">Regi\xf3n de Trencin</option>\n<option value="TT" selected="selected">Regi\xf3n de Trnava</option>\n<option value="ZA">Regi\xf3n de Zilina</option>\n</select>'
|
---|
2358 | ----------------------------------------------------------------------
|
---|
2359 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2360 | Failed example:
|
---|
2361 | w.render('Districts', 'RK')
|
---|
2362 | Expected:
|
---|
2363 | u'<select name="Districts">\n<option value="BB">Banska Bystrica</option>\n<option value="BS">Banska Stiavnica</option>\n<option value="BJ">Bardejov</option>\n<option value="BN">Banovce nad Bebravou</option>\n<option value="BR">Brezno</option>\n<option value="BA1">Bratislava I</option>\n<option value="BA2">Bratislava II</option>\n<option value="BA3">Bratislava III</option>\n<option value="BA4">Bratislava IV</option>\n<option value="BA5">Bratislava V</option>\n<option value="BY">Bytca</option>\n<option value="CA">Cadca</option>\n<option value="DT">Detva</option>\n<option value="DK">Dolny Kubin</option>\n<option value="DS">Dunajska Streda</option>\n<option value="GA">Galanta</option>\n<option value="GL">Gelnica</option>\n<option value="HC">Hlohovec</option>\n<option value="HE">Humenne</option>\n<option value="IL">Ilava</option>\n<option value="KK">Kezmarok</option>\n<option value="KN">Komarno</option>\n<option value="KE1">Kosice I</option>\n<option value="KE2">Kosice II</option>\n<option value="KE3">Kosice III</option>\n<option value="KE4">Kosice IV</option>\n<option value="KEO">Kosice - okolie</option>\n<option value="KA">Krupina</option>\n<option value="KM">Kysucke Nove Mesto</option>\n<option value="LV">Levice</option>\n<option value="LE">Levoca</option>\n<option value="LM">Liptovsky Mikulas</option>\n<option value="LC">Lucenec</option>\n<option value="MA">Malacky</option>\n<option value="MT">Martin</option>\n<option value="ML">Medzilaborce</option>\n<option value="MI">Michalovce</option>\n<option value="MY">Myjava</option>\n<option value="NO">Namestovo</option>\n<option value="NR">Nitra</option>\n<option value="NM">Nove Mesto nad Vahom</option>\n<option value="NZ">Nove Zamky</option>\n<option value="PE">Partizanske</option>\n<option value="PK">Pezinok</option>\n<option value="PN">Piestany</option>\n<option value="PT">Poltar</option>\n<option value="PP">Poprad</option>\n<option value="PB">Povazska Bystrica</option>\n<option value="PO">Presov</option>\n<option value="PD">Prievidza</option>\n<option value="PU">Puchov</option>\n<option value="RA">Revuca</option>\n<option value="RS">Rimavska Sobota</option>\n<option value="RV">Roznava</option>\n<option value="RK" selected="selected">Ruzomberok</option>\n<option value="SB">Sabinov</option>\n<option value="SC">Senec</option>\n<option value="SE">Senica</option>\n<option value="SI">Skalica</option>\n<option value="SV">Snina</option>\n<option value="SO">Sobrance</option>\n<option value="SN">Spisska Nova Ves</option>\n<option value="SL">Stara Lubovna</option>\n<option value="SP">Stropkov</option>\n<option value="SK">Svidnik</option>\n<option value="SA">Sala</option>\n<option value="TO">Topolcany</option>\n<option value="TV">Trebisov</option>\n<option value="TN">Trencin</option>\n<option value="TT">Trnava</option>\n<option value="TR">Turcianske Teplice</option>\n<option value="TS">Tvrdosin</option>\n<option value="VK">Velky Krtis</option>\n<option value="VT">Vranov nad Toplou</option>\n<option value="ZM">Zlate Moravce</option>\n<option value="ZV">Zvolen</option>\n<option value="ZC">Zarnovica</option>\n<option value="ZH">Ziar nad Hronom</option>\n<option value="ZA">Zilina</option>\n</select>'
|
---|
2364 | Got:
|
---|
2365 | u'<select name="Districts">\n<option value="BB">Regi\xf3n de Bystrica</option>\n<option value="BS">Regi\xf3n de Banska Stiavnica</option>\n<option value="BJ">Regi\xf3n de Bardejov</option>\n<option value="BN">Regi\xf3n de Banovce nad Bebravou</option>\n<option value="BR">Regi\xf3n de Brezno</option>\n<option value="BA1">Regi\xf3n de Bratislava I</option>\n<option value="BA2">Regi\xf3n de Bratislava II</option>\n<option value="BA3">Regi\xf3n de Bratislava III</option>\n<option value="BA4">Regi\xf3n de Bratislava IV</option>\n<option value="BA5">Regi\xf3n de Bratislava V</option>\n<option value="BY">Regi\xf3n de Bytca</option>\n<option value="CA">Regi\xf3n de Cadca</option>\n<option value="DT">Regi\xf3n de Detva</option>\n<option value="DK">Regi\xf3n de Dolny Kubin</option>\n<option value="DS">Regi\xf3n de Dunajska Streda</option>\n<option value="GA">Galanta</option>\n<option value="GL">Gelnica</option>\n<option value="HC">Hlohovec</option>\n<option value="HE">Humenne</option>\n<option value="IL">Ilava</option>\n<option value="KK">Kezmarok</option>\n<option value="KN">Komarno</option>\n<option value="KE1">Kosice I</option>\n<option value="KE2">Kosice II</option>\n<option value="KE3">Kosice III</option>\n<option value="KE4">Kosice IV</option>\n<option value="KEO">Kosice - okolie</option>\n<option value="KA">Krupina</option>\n<option value="KM">Kysucke Nove Mesto</option>\n<option value="LV">Levice</option>\n<option value="LE">Levoca</option>\n<option value="LM">Liptovsky Mikulas</option>\n<option value="LC">Lucenec</option>\n<option value="MA">Malacky</option>\n<option value="MT">Martin</option>\n<option value="ML">Medzilaborce</option>\n<option value="MI">Michalovce</option>\n<option value="MY">Myjava</option>\n<option value="NO">Namestovo</option>\n<option value="NR">Nitra</option>\n<option value="NM">Nove Mesto nad Vahom</option>\n<option value="NZ">Nove Zamky</option>\n<option value="PE">Partizanske</option>\n<option value="PK">Pezinok</option>\n<option value="PN">Piestany</option>\n<option value="PT">Poltar</option>\n<option value="PP">Poprad</option>\n<option value="PB">Povazska Bystrica</option>\n<option value="PO">Presov</option>\n<option value="PD">Prievidza</option>\n<option value="PU">Puchov</option>\n<option value="RA">Revuca</option>\n<option value="RS">Rimavska Sobota</option>\n<option value="RV">Roznava</option>\n<option value="RK" selected="selected">Ruzomberok</option>\n<option value="SB">Sabinov</option>\n<option value="SC">Senec</option>\n<option value="SE">Senica</option>\n<option value="SI">Skalica</option>\n<option value="SV">Snina</option>\n<option value="SO">Sobrance</option>\n<option value="SN">Spisska Nova Ves</option>\n<option value="SL">Stara Lubovna</option>\n<option value="SP">Stropkov</option>\n<option value="SK">Svidnik</option>\n<option value="SA">Sala</option>\n<option value="TO">Topolcany</option>\n<option value="TV">Trebisov</option>\n<option value="TN">Trencin</option>\n<option value="TT">Trnava</option>\n<option value="TR">Turcianske Teplice</option>\n<option value="TS">Tvrdosin</option>\n<option value="VK">Velky Krtis</option>\n<option value="VT">Vranov nad Toplou</option>\n<option value="ZM">Zlate Moravce</option>\n<option value="ZV">Zvolen</option>\n<option value="ZC">Zarnovica</option>\n<option value="ZH">Ziar nad Hronom</option>\n<option value="ZA">Zilina</option>\n</select>'
|
---|
2366 | ----------------------------------------------------------------------
|
---|
2367 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2368 | Failed example:
|
---|
2369 | f.clean('43--434')
|
---|
2370 | Expected:
|
---|
2371 | Traceback (most recent call last):
|
---|
2372 | ...
|
---|
2373 | ValidationError: [u'Enter a postal code in the format XX-XXX.']
|
---|
2374 | Got:
|
---|
2375 | Traceback (most recent call last):
|
---|
2376 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2377 | compileflags, 1) in test.globs
|
---|
2378 | File "<doctest regressiontests.forms.tests.__test__.localflavor[424]>", line 1, in ?
|
---|
2379 | f.clean('43--434')
|
---|
2380 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2381 | raise ValidationError(self.error_message)
|
---|
2382 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato XX-XXX.']
|
---|
2383 | ----------------------------------------------------------------------
|
---|
2384 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2385 | Failed example:
|
---|
2386 | f.clean('43-343-234-323')
|
---|
2387 | Expected:
|
---|
2388 | Traceback (most recent call last):
|
---|
2389 | ...
|
---|
2390 | ValidationError: [u'Enter a tax number field (NIP) in the format XXX-XXX-XX-XX or XX-XX-XXX-XXX.']
|
---|
2391 | Got:
|
---|
2392 | Traceback (most recent call last):
|
---|
2393 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2394 | compileflags, 1) in test.globs
|
---|
2395 | File "<doctest regressiontests.forms.tests.__test__.localflavor[428]>", line 1, in ?
|
---|
2396 | f.clean('43-343-234-323')
|
---|
2397 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2398 | raise ValidationError(self.error_message)
|
---|
2399 | ValidationError: [u'Introduzca un n\xfamero de impuesto (NIP) en el formato XXX-XXX-XX-XX or XX-XX-XXX-XXX.']
|
---|
2400 | ----------------------------------------------------------------------
|
---|
2401 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2402 | Failed example:
|
---|
2403 | f.clean('80071610610')
|
---|
2404 | Expected:
|
---|
2405 | Traceback (most recent call last):
|
---|
2406 | ...
|
---|
2407 | ValidationError: [u'Wrong checksum for the National Identification Number.']
|
---|
2408 | Got:
|
---|
2409 | Traceback (most recent call last):
|
---|
2410 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2411 | compileflags, 1) in test.globs
|
---|
2412 | File "<doctest regressiontests.forms.tests.__test__.localflavor[434]>", line 1, in ?
|
---|
2413 | f.clean('80071610610')
|
---|
2414 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/pl/forms.py", line 59, in clean
|
---|
2415 | raise ValidationError(_(u'Wrong checksum for the National Identification Number.'))
|
---|
2416 | ValidationError: [u'El N\xfamero de Identificaci\xf3n Nacional es incorrecto.']
|
---|
2417 | ----------------------------------------------------------------------
|
---|
2418 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2419 | Failed example:
|
---|
2420 | f.clean('80')
|
---|
2421 | Expected:
|
---|
2422 | Traceback (most recent call last):
|
---|
2423 | ...
|
---|
2424 | ValidationError: [u'National Identification Number consists of 11 digits.']
|
---|
2425 | Got:
|
---|
2426 | Traceback (most recent call last):
|
---|
2427 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2428 | compileflags, 1) in test.globs
|
---|
2429 | File "<doctest regressiontests.forms.tests.__test__.localflavor[435]>", line 1, in ?
|
---|
2430 | f.clean('80')
|
---|
2431 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/pl/forms.py", line 57, in clean
|
---|
2432 | super(PLNationalIdentificationNumberField, self).clean(value)
|
---|
2433 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2434 | raise ValidationError(self.error_message)
|
---|
2435 | ValidationError: [u'N\xfamero de Identificaci\xf3n Nacional consiste en 11 d\xedgitos']
|
---|
2436 | ----------------------------------------------------------------------
|
---|
2437 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2438 | Failed example:
|
---|
2439 | f.clean('800716106AA')
|
---|
2440 | Expected:
|
---|
2441 | Traceback (most recent call last):
|
---|
2442 | ...
|
---|
2443 | ValidationError: [u'National Identification Number consists of 11 digits.']
|
---|
2444 | Got:
|
---|
2445 | Traceback (most recent call last):
|
---|
2446 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2447 | compileflags, 1) in test.globs
|
---|
2448 | File "<doctest regressiontests.forms.tests.__test__.localflavor[436]>", line 1, in ?
|
---|
2449 | f.clean('800716106AA')
|
---|
2450 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/pl/forms.py", line 57, in clean
|
---|
2451 | super(PLNationalIdentificationNumberField, self).clean(value)
|
---|
2452 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2453 | raise ValidationError(self.error_message)
|
---|
2454 | ValidationError: [u'N\xfamero de Identificaci\xf3n Nacional consiste en 11 d\xedgitos']
|
---|
2455 | ----------------------------------------------------------------------
|
---|
2456 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2457 | Failed example:
|
---|
2458 | f.clean('foo')
|
---|
2459 | Expected:
|
---|
2460 | Traceback (most recent call last):
|
---|
2461 | ...
|
---|
2462 | ValidationError: [u'Enter a valid phone number']
|
---|
2463 | Got:
|
---|
2464 | Traceback (most recent call last):
|
---|
2465 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2466 | compileflags, 1) in test.globs
|
---|
2467 | File "<doctest regressiontests.forms.tests.__test__.localflavor[444]>", line 1, in ?
|
---|
2468 | f.clean('foo')
|
---|
2469 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/nl/forms.py", line 63, in clean
|
---|
2470 | raise ValidationError(msg)
|
---|
2471 | ValidationError: [u'Introduzca un n\xfamero de tel\xe9fono v\xe1lido']
|
---|
2472 | ----------------------------------------------------------------------
|
---|
2473 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2474 | Failed example:
|
---|
2475 | f.clean('0123AB')
|
---|
2476 | Expected:
|
---|
2477 | Traceback (most recent call last):
|
---|
2478 | ...
|
---|
2479 | ValidationError: [u'Enter a valid postal code']
|
---|
2480 | Got:
|
---|
2481 | Traceback (most recent call last):
|
---|
2482 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2483 | compileflags, 1) in test.globs
|
---|
2484 | File "<doctest regressiontests.forms.tests.__test__.localflavor[451]>", line 1, in ?
|
---|
2485 | f.clean('0123AB')
|
---|
2486 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/nl/forms.py", line 31, in clean
|
---|
2487 | raise ValidationError(msg)
|
---|
2488 | ValidationError: [u'Introduzca un c\xf3digo postal v\xe1lido']
|
---|
2489 | ----------------------------------------------------------------------
|
---|
2490 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2491 | Failed example:
|
---|
2492 | f.clean('foo')
|
---|
2493 | Expected:
|
---|
2494 | Traceback (most recent call last):
|
---|
2495 | ...
|
---|
2496 | ValidationError: [u'Enter a valid postal code']
|
---|
2497 | Got:
|
---|
2498 | Traceback (most recent call last):
|
---|
2499 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2500 | compileflags, 1) in test.globs
|
---|
2501 | File "<doctest regressiontests.forms.tests.__test__.localflavor[452]>", line 1, in ?
|
---|
2502 | f.clean('foo')
|
---|
2503 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/nl/forms.py", line 28, in clean
|
---|
2504 | raise ValidationError(msg)
|
---|
2505 | ValidationError: [u'Introduzca un c\xf3digo postal v\xe1lido']
|
---|
2506 | ----------------------------------------------------------------------
|
---|
2507 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2508 | Failed example:
|
---|
2509 | f.clean('000000000')
|
---|
2510 | Expected:
|
---|
2511 | Traceback (most recent call last):
|
---|
2512 | ...
|
---|
2513 | ValidationError: [u'Enter a valid SoFi number']
|
---|
2514 | Got:
|
---|
2515 | Traceback (most recent call last):
|
---|
2516 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2517 | compileflags, 1) in test.globs
|
---|
2518 | File "<doctest regressiontests.forms.tests.__test__.localflavor[457]>", line 1, in ?
|
---|
2519 | f.clean('000000000')
|
---|
2520 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/nl/forms.py", line 82, in clean
|
---|
2521 | raise ValidationError(msg)
|
---|
2522 | ValidationError: [u'Introduzca un n\xfamero SoFi v\xe1lido']
|
---|
2523 | ----------------------------------------------------------------------
|
---|
2524 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2525 | Failed example:
|
---|
2526 | f.clean('123456789')
|
---|
2527 | Expected:
|
---|
2528 | Traceback (most recent call last):
|
---|
2529 | ...
|
---|
2530 | ValidationError: [u'Enter a valid SoFi number']
|
---|
2531 | Got:
|
---|
2532 | Traceback (most recent call last):
|
---|
2533 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2534 | compileflags, 1) in test.globs
|
---|
2535 | File "<doctest regressiontests.forms.tests.__test__.localflavor[458]>", line 1, in ?
|
---|
2536 | f.clean('123456789')
|
---|
2537 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/nl/forms.py", line 90, in clean
|
---|
2538 | raise ValidationError(msg)
|
---|
2539 | ValidationError: [u'Introduzca un n\xfamero SoFi v\xe1lido']
|
---|
2540 | ----------------------------------------------------------------------
|
---|
2541 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2542 | Failed example:
|
---|
2543 | f.clean('foo')
|
---|
2544 | Expected:
|
---|
2545 | Traceback (most recent call last):
|
---|
2546 | ...
|
---|
2547 | ValidationError: [u'Enter a valid SoFi number']
|
---|
2548 | Got:
|
---|
2549 | Traceback (most recent call last):
|
---|
2550 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2551 | compileflags, 1) in test.globs
|
---|
2552 | File "<doctest regressiontests.forms.tests.__test__.localflavor[459]>", line 1, in ?
|
---|
2553 | f.clean('foo')
|
---|
2554 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/nl/forms.py", line 79, in clean
|
---|
2555 | raise ValidationError(msg)
|
---|
2556 | ValidationError: [u'Introduzca un n\xfamero SoFi v\xe1lido']
|
---|
2557 | ----------------------------------------------------------------------
|
---|
2558 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2559 | Failed example:
|
---|
2560 | f.clean('C1064AABB')
|
---|
2561 | Expected:
|
---|
2562 | Traceback (most recent call last):
|
---|
2563 | ...
|
---|
2564 | ValidationError: [u'Ensure this value has at most 8 characters (it has 9).']
|
---|
2565 | Got:
|
---|
2566 | Traceback (most recent call last):
|
---|
2567 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2568 | compileflags, 1) in test.globs
|
---|
2569 | File "<doctest regressiontests.forms.tests.__test__.localflavor[474]>", line 1, in ?
|
---|
2570 | f.clean('C1064AABB')
|
---|
2571 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 34, in clean
|
---|
2572 | value = super(ARPostalCodeField, self).clean(value)
|
---|
2573 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
2574 | value = super(RegexField, self).clean(value)
|
---|
2575 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 123, in clean
|
---|
2576 | raise ValidationError(ugettext(u'Ensure this value has at most %(max)d characters (it has %(length)d).') % {'max': self.max_length, 'length': value_length})
|
---|
2577 | ValidationError: [u'Aseg\xfarese de que su texto tiene a lo m\xe1s 8 caracteres (actualmente tiene 9).']
|
---|
2578 | ----------------------------------------------------------------------
|
---|
2579 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2580 | Failed example:
|
---|
2581 | f.clean('C1064AA')
|
---|
2582 | Expected:
|
---|
2583 | Traceback (most recent call last):
|
---|
2584 | ...
|
---|
2585 | ValidationError: [u'Enter a postal code in the format NNNN or ANNNNAAA.']
|
---|
2586 | Got:
|
---|
2587 | Traceback (most recent call last):
|
---|
2588 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2589 | compileflags, 1) in test.globs
|
---|
2590 | File "<doctest regressiontests.forms.tests.__test__.localflavor[475]>", line 1, in ?
|
---|
2591 | f.clean('C1064AA')
|
---|
2592 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 34, in clean
|
---|
2593 | value = super(ARPostalCodeField, self).clean(value)
|
---|
2594 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2595 | raise ValidationError(self.error_message)
|
---|
2596 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato NNNN or ANNNNAAA.']
|
---|
2597 | ----------------------------------------------------------------------
|
---|
2598 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2599 | Failed example:
|
---|
2600 | f.clean('C106AAB')
|
---|
2601 | Expected:
|
---|
2602 | Traceback (most recent call last):
|
---|
2603 | ...
|
---|
2604 | ValidationError: [u'Enter a postal code in the format NNNN or ANNNNAAA.']
|
---|
2605 | Got:
|
---|
2606 | Traceback (most recent call last):
|
---|
2607 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2608 | compileflags, 1) in test.globs
|
---|
2609 | File "<doctest regressiontests.forms.tests.__test__.localflavor[476]>", line 1, in ?
|
---|
2610 | f.clean('C106AAB')
|
---|
2611 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 34, in clean
|
---|
2612 | value = super(ARPostalCodeField, self).clean(value)
|
---|
2613 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2614 | raise ValidationError(self.error_message)
|
---|
2615 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato NNNN or ANNNNAAA.']
|
---|
2616 | ----------------------------------------------------------------------
|
---|
2617 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2618 | Failed example:
|
---|
2619 | f.clean('106AAB')
|
---|
2620 | Expected:
|
---|
2621 | Traceback (most recent call last):
|
---|
2622 | ...
|
---|
2623 | ValidationError: [u'Enter a postal code in the format NNNN or ANNNNAAA.']
|
---|
2624 | Got:
|
---|
2625 | Traceback (most recent call last):
|
---|
2626 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2627 | compileflags, 1) in test.globs
|
---|
2628 | File "<doctest regressiontests.forms.tests.__test__.localflavor[477]>", line 1, in ?
|
---|
2629 | f.clean('106AAB')
|
---|
2630 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 34, in clean
|
---|
2631 | value = super(ARPostalCodeField, self).clean(value)
|
---|
2632 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2633 | raise ValidationError(self.error_message)
|
---|
2634 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato NNNN or ANNNNAAA.']
|
---|
2635 | ----------------------------------------------------------------------
|
---|
2636 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2637 | Failed example:
|
---|
2638 | f.clean('500')
|
---|
2639 | Expected:
|
---|
2640 | Traceback (most recent call last):
|
---|
2641 | ...
|
---|
2642 | ValidationError: [u'Ensure this value has at least 4 characters (it has 3).']
|
---|
2643 | Got:
|
---|
2644 | Traceback (most recent call last):
|
---|
2645 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2646 | compileflags, 1) in test.globs
|
---|
2647 | File "<doctest regressiontests.forms.tests.__test__.localflavor[478]>", line 1, in ?
|
---|
2648 | f.clean('500')
|
---|
2649 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 34, in clean
|
---|
2650 | value = super(ARPostalCodeField, self).clean(value)
|
---|
2651 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
2652 | value = super(RegexField, self).clean(value)
|
---|
2653 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 125, in clean
|
---|
2654 | raise ValidationError(ugettext(u'Ensure this value has at least %(min)d characters (it has %(length)d).') % {'min': self.min_length, 'length': value_length})
|
---|
2655 | ValidationError: [u'Aseg\xfarese de que su texto tiene al menos 4 caracteres (actualmente tiene 3).']
|
---|
2656 | ----------------------------------------------------------------------
|
---|
2657 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2658 | Failed example:
|
---|
2659 | f.clean('5PPP')
|
---|
2660 | Expected:
|
---|
2661 | Traceback (most recent call last):
|
---|
2662 | ...
|
---|
2663 | ValidationError: [u'Enter a postal code in the format NNNN or ANNNNAAA.']
|
---|
2664 | Got:
|
---|
2665 | Traceback (most recent call last):
|
---|
2666 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2667 | compileflags, 1) in test.globs
|
---|
2668 | File "<doctest regressiontests.forms.tests.__test__.localflavor[479]>", line 1, in ?
|
---|
2669 | f.clean('5PPP')
|
---|
2670 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 34, in clean
|
---|
2671 | value = super(ARPostalCodeField, self).clean(value)
|
---|
2672 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2673 | raise ValidationError(self.error_message)
|
---|
2674 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato NNNN or ANNNNAAA.']
|
---|
2675 | ----------------------------------------------------------------------
|
---|
2676 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2677 | Failed example:
|
---|
2678 | f.clean(None)
|
---|
2679 | Expected:
|
---|
2680 | Traceback (most recent call last):
|
---|
2681 | ...
|
---|
2682 | ValidationError: [u'This field is required.']
|
---|
2683 | Got:
|
---|
2684 | Traceback (most recent call last):
|
---|
2685 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2686 | compileflags, 1) in test.globs
|
---|
2687 | File "<doctest regressiontests.forms.tests.__test__.localflavor[480]>", line 1, in ?
|
---|
2688 | f.clean(None)
|
---|
2689 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 34, in clean
|
---|
2690 | value = super(ARPostalCodeField, self).clean(value)
|
---|
2691 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
2692 | value = super(RegexField, self).clean(value)
|
---|
2693 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
2694 | super(CharField, self).clean(value)
|
---|
2695 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
2696 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
2697 | ValidationError: [u'Este campo es obligatorio.']
|
---|
2698 | ----------------------------------------------------------------------
|
---|
2699 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2700 | Failed example:
|
---|
2701 | f.clean('')
|
---|
2702 | Expected:
|
---|
2703 | Traceback (most recent call last):
|
---|
2704 | ...
|
---|
2705 | ValidationError: [u'This field is required.']
|
---|
2706 | Got:
|
---|
2707 | Traceback (most recent call last):
|
---|
2708 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2709 | compileflags, 1) in test.globs
|
---|
2710 | File "<doctest regressiontests.forms.tests.__test__.localflavor[481]>", line 1, in ?
|
---|
2711 | f.clean('')
|
---|
2712 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 34, in clean
|
---|
2713 | value = super(ARPostalCodeField, self).clean(value)
|
---|
2714 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
2715 | value = super(RegexField, self).clean(value)
|
---|
2716 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
2717 | super(CharField, self).clean(value)
|
---|
2718 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
2719 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
2720 | ValidationError: [u'Este campo es obligatorio.']
|
---|
2721 | ----------------------------------------------------------------------
|
---|
2722 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2723 | Failed example:
|
---|
2724 | f.clean(u'')
|
---|
2725 | Expected:
|
---|
2726 | Traceback (most recent call last):
|
---|
2727 | ...
|
---|
2728 | ValidationError: [u'This field is required.']
|
---|
2729 | Got:
|
---|
2730 | Traceback (most recent call last):
|
---|
2731 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2732 | compileflags, 1) in test.globs
|
---|
2733 | File "<doctest regressiontests.forms.tests.__test__.localflavor[482]>", line 1, in ?
|
---|
2734 | f.clean(u'')
|
---|
2735 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 34, in clean
|
---|
2736 | value = super(ARPostalCodeField, self).clean(value)
|
---|
2737 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
2738 | value = super(RegexField, self).clean(value)
|
---|
2739 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
2740 | super(CharField, self).clean(value)
|
---|
2741 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
2742 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
2743 | ValidationError: [u'Este campo es obligatorio.']
|
---|
2744 | ----------------------------------------------------------------------
|
---|
2745 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2746 | Failed example:
|
---|
2747 | f.clean('C1064AABB')
|
---|
2748 | Expected:
|
---|
2749 | Traceback (most recent call last):
|
---|
2750 | ...
|
---|
2751 | ValidationError: [u'Ensure this value has at most 8 characters (it has 9).']
|
---|
2752 | Got:
|
---|
2753 | Traceback (most recent call last):
|
---|
2754 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2755 | compileflags, 1) in test.globs
|
---|
2756 | File "<doctest regressiontests.forms.tests.__test__.localflavor[490]>", line 1, in ?
|
---|
2757 | f.clean('C1064AABB')
|
---|
2758 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 34, in clean
|
---|
2759 | value = super(ARPostalCodeField, self).clean(value)
|
---|
2760 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
2761 | value = super(RegexField, self).clean(value)
|
---|
2762 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 123, in clean
|
---|
2763 | raise ValidationError(ugettext(u'Ensure this value has at most %(max)d characters (it has %(length)d).') % {'max': self.max_length, 'length': value_length})
|
---|
2764 | ValidationError: [u'Aseg\xfarese de que su texto tiene a lo m\xe1s 8 caracteres (actualmente tiene 9).']
|
---|
2765 | ----------------------------------------------------------------------
|
---|
2766 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2767 | Failed example:
|
---|
2768 | f.clean('C1064AA')
|
---|
2769 | Expected:
|
---|
2770 | Traceback (most recent call last):
|
---|
2771 | ...
|
---|
2772 | ValidationError: [u'Enter a postal code in the format NNNN or ANNNNAAA.']
|
---|
2773 | Got:
|
---|
2774 | Traceback (most recent call last):
|
---|
2775 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2776 | compileflags, 1) in test.globs
|
---|
2777 | File "<doctest regressiontests.forms.tests.__test__.localflavor[491]>", line 1, in ?
|
---|
2778 | f.clean('C1064AA')
|
---|
2779 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 34, in clean
|
---|
2780 | value = super(ARPostalCodeField, self).clean(value)
|
---|
2781 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2782 | raise ValidationError(self.error_message)
|
---|
2783 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato NNNN or ANNNNAAA.']
|
---|
2784 | ----------------------------------------------------------------------
|
---|
2785 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2786 | Failed example:
|
---|
2787 | f.clean('C106AAB')
|
---|
2788 | Expected:
|
---|
2789 | Traceback (most recent call last):
|
---|
2790 | ...
|
---|
2791 | ValidationError: [u'Enter a postal code in the format NNNN or ANNNNAAA.']
|
---|
2792 | Got:
|
---|
2793 | Traceback (most recent call last):
|
---|
2794 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2795 | compileflags, 1) in test.globs
|
---|
2796 | File "<doctest regressiontests.forms.tests.__test__.localflavor[492]>", line 1, in ?
|
---|
2797 | f.clean('C106AAB')
|
---|
2798 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 34, in clean
|
---|
2799 | value = super(ARPostalCodeField, self).clean(value)
|
---|
2800 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2801 | raise ValidationError(self.error_message)
|
---|
2802 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato NNNN or ANNNNAAA.']
|
---|
2803 | ----------------------------------------------------------------------
|
---|
2804 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2805 | Failed example:
|
---|
2806 | f.clean('106AAB')
|
---|
2807 | Expected:
|
---|
2808 | Traceback (most recent call last):
|
---|
2809 | ...
|
---|
2810 | ValidationError: [u'Enter a postal code in the format NNNN or ANNNNAAA.']
|
---|
2811 | Got:
|
---|
2812 | Traceback (most recent call last):
|
---|
2813 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2814 | compileflags, 1) in test.globs
|
---|
2815 | File "<doctest regressiontests.forms.tests.__test__.localflavor[493]>", line 1, in ?
|
---|
2816 | f.clean('106AAB')
|
---|
2817 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 34, in clean
|
---|
2818 | value = super(ARPostalCodeField, self).clean(value)
|
---|
2819 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2820 | raise ValidationError(self.error_message)
|
---|
2821 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato NNNN or ANNNNAAA.']
|
---|
2822 | ----------------------------------------------------------------------
|
---|
2823 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2824 | Failed example:
|
---|
2825 | f.clean('500')
|
---|
2826 | Expected:
|
---|
2827 | Traceback (most recent call last):
|
---|
2828 | ...
|
---|
2829 | ValidationError: [u'Ensure this value has at least 4 characters (it has 3).']
|
---|
2830 | Got:
|
---|
2831 | Traceback (most recent call last):
|
---|
2832 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2833 | compileflags, 1) in test.globs
|
---|
2834 | File "<doctest regressiontests.forms.tests.__test__.localflavor[494]>", line 1, in ?
|
---|
2835 | f.clean('500')
|
---|
2836 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 34, in clean
|
---|
2837 | value = super(ARPostalCodeField, self).clean(value)
|
---|
2838 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
2839 | value = super(RegexField, self).clean(value)
|
---|
2840 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 125, in clean
|
---|
2841 | raise ValidationError(ugettext(u'Ensure this value has at least %(min)d characters (it has %(length)d).') % {'min': self.min_length, 'length': value_length})
|
---|
2842 | ValidationError: [u'Aseg\xfarese de que su texto tiene al menos 4 caracteres (actualmente tiene 3).']
|
---|
2843 | ----------------------------------------------------------------------
|
---|
2844 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2845 | Failed example:
|
---|
2846 | f.clean('5PPP')
|
---|
2847 | Expected:
|
---|
2848 | Traceback (most recent call last):
|
---|
2849 | ...
|
---|
2850 | ValidationError: [u'Enter a postal code in the format NNNN or ANNNNAAA.']
|
---|
2851 | Got:
|
---|
2852 | Traceback (most recent call last):
|
---|
2853 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2854 | compileflags, 1) in test.globs
|
---|
2855 | File "<doctest regressiontests.forms.tests.__test__.localflavor[495]>", line 1, in ?
|
---|
2856 | f.clean('5PPP')
|
---|
2857 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 34, in clean
|
---|
2858 | value = super(ARPostalCodeField, self).clean(value)
|
---|
2859 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
2860 | raise ValidationError(self.error_message)
|
---|
2861 | ValidationError: [u'Introduzca un c\xf3digo postal en el formato NNNN or ANNNNAAA.']
|
---|
2862 | ----------------------------------------------------------------------
|
---|
2863 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2864 | Failed example:
|
---|
2865 | f.clean('101234566')
|
---|
2866 | Expected:
|
---|
2867 | Traceback (most recent call last):
|
---|
2868 | ...
|
---|
2869 | ValidationError: [u'This field requires 7 or 8 digits.']
|
---|
2870 | Got:
|
---|
2871 | Traceback (most recent call last):
|
---|
2872 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2873 | compileflags, 1) in test.globs
|
---|
2874 | File "<doctest regressiontests.forms.tests.__test__.localflavor[508]>", line 1, in ?
|
---|
2875 | f.clean('101234566')
|
---|
2876 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 63, in clean
|
---|
2877 | raise ValidationError(
|
---|
2878 | ValidationError: [u'Este campo necesita 7 o 8 d\xedgitos.']
|
---|
2879 | ----------------------------------------------------------------------
|
---|
2880 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2881 | Failed example:
|
---|
2882 | f.clean('W0123456')
|
---|
2883 | Expected:
|
---|
2884 | Traceback (most recent call last):
|
---|
2885 | ...
|
---|
2886 | ValidationError: [u'This field requires only numbers.']
|
---|
2887 | Got:
|
---|
2888 | Traceback (most recent call last):
|
---|
2889 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2890 | compileflags, 1) in test.globs
|
---|
2891 | File "<doctest regressiontests.forms.tests.__test__.localflavor[509]>", line 1, in ?
|
---|
2892 | f.clean('W0123456')
|
---|
2893 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 61, in clean
|
---|
2894 | raise ValidationError(ugettext("This field requires only numbers."))
|
---|
2895 | ValidationError: [u'Este campo s\xf3lo acepta n\xfameros.']
|
---|
2896 | ----------------------------------------------------------------------
|
---|
2897 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2898 | Failed example:
|
---|
2899 | f.clean('10,123,456')
|
---|
2900 | Expected:
|
---|
2901 | Traceback (most recent call last):
|
---|
2902 | ...
|
---|
2903 | ValidationError: [u'This field requires only numbers.']
|
---|
2904 | Got:
|
---|
2905 | Traceback (most recent call last):
|
---|
2906 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2907 | compileflags, 1) in test.globs
|
---|
2908 | File "<doctest regressiontests.forms.tests.__test__.localflavor[510]>", line 1, in ?
|
---|
2909 | f.clean('10,123,456')
|
---|
2910 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 61, in clean
|
---|
2911 | raise ValidationError(ugettext("This field requires only numbers."))
|
---|
2912 | ValidationError: [u'Este campo s\xf3lo acepta n\xfameros.']
|
---|
2913 | ----------------------------------------------------------------------
|
---|
2914 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2915 | Failed example:
|
---|
2916 | f.clean(None)
|
---|
2917 | Expected:
|
---|
2918 | Traceback (most recent call last):
|
---|
2919 | ...
|
---|
2920 | ValidationError: [u'This field is required.']
|
---|
2921 | Got:
|
---|
2922 | Traceback (most recent call last):
|
---|
2923 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2924 | compileflags, 1) in test.globs
|
---|
2925 | File "<doctest regressiontests.forms.tests.__test__.localflavor[511]>", line 1, in ?
|
---|
2926 | f.clean(None)
|
---|
2927 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 55, in clean
|
---|
2928 | value = super(ARDNIField, self).clean(value)
|
---|
2929 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
2930 | super(CharField, self).clean(value)
|
---|
2931 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
2932 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
2933 | ValidationError: [u'Este campo es obligatorio.']
|
---|
2934 | ----------------------------------------------------------------------
|
---|
2935 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2936 | Failed example:
|
---|
2937 | f.clean('')
|
---|
2938 | Expected:
|
---|
2939 | Traceback (most recent call last):
|
---|
2940 | ...
|
---|
2941 | ValidationError: [u'This field is required.']
|
---|
2942 | Got:
|
---|
2943 | Traceback (most recent call last):
|
---|
2944 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2945 | compileflags, 1) in test.globs
|
---|
2946 | File "<doctest regressiontests.forms.tests.__test__.localflavor[512]>", line 1, in ?
|
---|
2947 | f.clean('')
|
---|
2948 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 55, in clean
|
---|
2949 | value = super(ARDNIField, self).clean(value)
|
---|
2950 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
2951 | super(CharField, self).clean(value)
|
---|
2952 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
2953 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
2954 | ValidationError: [u'Este campo es obligatorio.']
|
---|
2955 | ----------------------------------------------------------------------
|
---|
2956 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2957 | Failed example:
|
---|
2958 | f.clean(u'')
|
---|
2959 | Expected:
|
---|
2960 | Traceback (most recent call last):
|
---|
2961 | ...
|
---|
2962 | ValidationError: [u'This field is required.']
|
---|
2963 | Got:
|
---|
2964 | Traceback (most recent call last):
|
---|
2965 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2966 | compileflags, 1) in test.globs
|
---|
2967 | File "<doctest regressiontests.forms.tests.__test__.localflavor[513]>", line 1, in ?
|
---|
2968 | f.clean(u'')
|
---|
2969 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 55, in clean
|
---|
2970 | value = super(ARDNIField, self).clean(value)
|
---|
2971 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
2972 | super(CharField, self).clean(value)
|
---|
2973 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
2974 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
2975 | ValidationError: [u'Este campo es obligatorio.']
|
---|
2976 | ----------------------------------------------------------------------
|
---|
2977 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2978 | Failed example:
|
---|
2979 | f.clean('101234566')
|
---|
2980 | Expected:
|
---|
2981 | Traceback (most recent call last):
|
---|
2982 | ...
|
---|
2983 | ValidationError: [u'This field requires 7 or 8 digits.']
|
---|
2984 | Got:
|
---|
2985 | Traceback (most recent call last):
|
---|
2986 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
2987 | compileflags, 1) in test.globs
|
---|
2988 | File "<doctest regressiontests.forms.tests.__test__.localflavor[522]>", line 1, in ?
|
---|
2989 | f.clean('101234566')
|
---|
2990 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 63, in clean
|
---|
2991 | raise ValidationError(
|
---|
2992 | ValidationError: [u'Este campo necesita 7 o 8 d\xedgitos.']
|
---|
2993 | ----------------------------------------------------------------------
|
---|
2994 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
2995 | Failed example:
|
---|
2996 | f.clean('W0123456')
|
---|
2997 | Expected:
|
---|
2998 | Traceback (most recent call last):
|
---|
2999 | ...
|
---|
3000 | ValidationError: [u'This field requires only numbers.']
|
---|
3001 | Got:
|
---|
3002 | Traceback (most recent call last):
|
---|
3003 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3004 | compileflags, 1) in test.globs
|
---|
3005 | File "<doctest regressiontests.forms.tests.__test__.localflavor[523]>", line 1, in ?
|
---|
3006 | f.clean('W0123456')
|
---|
3007 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 61, in clean
|
---|
3008 | raise ValidationError(ugettext("This field requires only numbers."))
|
---|
3009 | ValidationError: [u'Este campo s\xf3lo acepta n\xfameros.']
|
---|
3010 | ----------------------------------------------------------------------
|
---|
3011 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3012 | Failed example:
|
---|
3013 | f.clean('10,123,456')
|
---|
3014 | Expected:
|
---|
3015 | Traceback (most recent call last):
|
---|
3016 | ...
|
---|
3017 | ValidationError: [u'This field requires only numbers.']
|
---|
3018 | Got:
|
---|
3019 | Traceback (most recent call last):
|
---|
3020 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3021 | compileflags, 1) in test.globs
|
---|
3022 | File "<doctest regressiontests.forms.tests.__test__.localflavor[524]>", line 1, in ?
|
---|
3023 | f.clean('10,123,456')
|
---|
3024 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 61, in clean
|
---|
3025 | raise ValidationError(ugettext("This field requires only numbers."))
|
---|
3026 | ValidationError: [u'Este campo s\xf3lo acepta n\xfameros.']
|
---|
3027 | ----------------------------------------------------------------------
|
---|
3028 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3029 | Failed example:
|
---|
3030 | f.clean('2-10123456-9')
|
---|
3031 | Expected:
|
---|
3032 | Traceback (most recent call last):
|
---|
3033 | ...
|
---|
3034 | ValidationError: [u'Enter a valid CUIT in XX-XXXXXXXX-X or XXXXXXXXXXXX format.']
|
---|
3035 | Got:
|
---|
3036 | Traceback (most recent call last):
|
---|
3037 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3038 | compileflags, 1) in test.globs
|
---|
3039 | File "<doctest regressiontests.forms.tests.__test__.localflavor[535]>", line 1, in ?
|
---|
3040 | f.clean('2-10123456-9')
|
---|
3041 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 83, in clean
|
---|
3042 | value = super(ARCUITField, self).clean(value)
|
---|
3043 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
3044 | raise ValidationError(self.error_message)
|
---|
3045 | ValidationError: [u'Introduzca un CUIT v\xe1lido en el formato XX-XXXXXXXX-X or XXXXXXXXXXXX.']
|
---|
3046 | ----------------------------------------------------------------------
|
---|
3047 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3048 | Failed example:
|
---|
3049 | f.clean('210123456-9')
|
---|
3050 | Expected:
|
---|
3051 | Traceback (most recent call last):
|
---|
3052 | ...
|
---|
3053 | ValidationError: [u'Enter a valid CUIT in XX-XXXXXXXX-X or XXXXXXXXXXXX format.']
|
---|
3054 | Got:
|
---|
3055 | Traceback (most recent call last):
|
---|
3056 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3057 | compileflags, 1) in test.globs
|
---|
3058 | File "<doctest regressiontests.forms.tests.__test__.localflavor[536]>", line 1, in ?
|
---|
3059 | f.clean('210123456-9')
|
---|
3060 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 83, in clean
|
---|
3061 | value = super(ARCUITField, self).clean(value)
|
---|
3062 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
3063 | raise ValidationError(self.error_message)
|
---|
3064 | ValidationError: [u'Introduzca un CUIT v\xe1lido en el formato XX-XXXXXXXX-X or XXXXXXXXXXXX.']
|
---|
3065 | ----------------------------------------------------------------------
|
---|
3066 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3067 | Failed example:
|
---|
3068 | f.clean('20-10123456')
|
---|
3069 | Expected:
|
---|
3070 | Traceback (most recent call last):
|
---|
3071 | ...
|
---|
3072 | ValidationError: [u'Enter a valid CUIT in XX-XXXXXXXX-X or XXXXXXXXXXXX format.']
|
---|
3073 | Got:
|
---|
3074 | Traceback (most recent call last):
|
---|
3075 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3076 | compileflags, 1) in test.globs
|
---|
3077 | File "<doctest regressiontests.forms.tests.__test__.localflavor[537]>", line 1, in ?
|
---|
3078 | f.clean('20-10123456')
|
---|
3079 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 83, in clean
|
---|
3080 | value = super(ARCUITField, self).clean(value)
|
---|
3081 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
3082 | raise ValidationError(self.error_message)
|
---|
3083 | ValidationError: [u'Introduzca un CUIT v\xe1lido en el formato XX-XXXXXXXX-X or XXXXXXXXXXXX.']
|
---|
3084 | ----------------------------------------------------------------------
|
---|
3085 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3086 | Failed example:
|
---|
3087 | f.clean('20-10123456-')
|
---|
3088 | Expected:
|
---|
3089 | Traceback (most recent call last):
|
---|
3090 | ...
|
---|
3091 | ValidationError: [u'Enter a valid CUIT in XX-XXXXXXXX-X or XXXXXXXXXXXX format.']
|
---|
3092 | Got:
|
---|
3093 | Traceback (most recent call last):
|
---|
3094 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3095 | compileflags, 1) in test.globs
|
---|
3096 | File "<doctest regressiontests.forms.tests.__test__.localflavor[538]>", line 1, in ?
|
---|
3097 | f.clean('20-10123456-')
|
---|
3098 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 83, in clean
|
---|
3099 | value = super(ARCUITField, self).clean(value)
|
---|
3100 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
3101 | raise ValidationError(self.error_message)
|
---|
3102 | ValidationError: [u'Introduzca un CUIT v\xe1lido en el formato XX-XXXXXXXX-X or XXXXXXXXXXXX.']
|
---|
3103 | ----------------------------------------------------------------------
|
---|
3104 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3105 | Failed example:
|
---|
3106 | f.clean('20-10123456-5')
|
---|
3107 | Expected:
|
---|
3108 | Traceback (most recent call last):
|
---|
3109 | ...
|
---|
3110 | ValidationError: [u'Invalid CUIT.']
|
---|
3111 | Got:
|
---|
3112 | Traceback (most recent call last):
|
---|
3113 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3114 | compileflags, 1) in test.globs
|
---|
3115 | File "<doctest regressiontests.forms.tests.__test__.localflavor[539]>", line 1, in ?
|
---|
3116 | f.clean('20-10123456-5')
|
---|
3117 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 88, in clean
|
---|
3118 | raise ValidationError(ugettext("Invalid CUIT."))
|
---|
3119 | ValidationError: [u'CUIT inv\xe1lido.']
|
---|
3120 | ----------------------------------------------------------------------
|
---|
3121 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3122 | Failed example:
|
---|
3123 | f.clean(u'2-10123456-9')
|
---|
3124 | Expected:
|
---|
3125 | Traceback (most recent call last):
|
---|
3126 | ...
|
---|
3127 | ValidationError: [u'Enter a valid CUIT in XX-XXXXXXXX-X or XXXXXXXXXXXX format.']
|
---|
3128 | Got:
|
---|
3129 | Traceback (most recent call last):
|
---|
3130 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3131 | compileflags, 1) in test.globs
|
---|
3132 | File "<doctest regressiontests.forms.tests.__test__.localflavor[540]>", line 1, in ?
|
---|
3133 | f.clean(u'2-10123456-9')
|
---|
3134 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 83, in clean
|
---|
3135 | value = super(ARCUITField, self).clean(value)
|
---|
3136 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
3137 | raise ValidationError(self.error_message)
|
---|
3138 | ValidationError: [u'Introduzca un CUIT v\xe1lido en el formato XX-XXXXXXXX-X or XXXXXXXXXXXX.']
|
---|
3139 | ----------------------------------------------------------------------
|
---|
3140 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3141 | Failed example:
|
---|
3142 | f.clean('27-10345678-1')
|
---|
3143 | Expected:
|
---|
3144 | Traceback (most recent call last):
|
---|
3145 | ...
|
---|
3146 | ValidationError: [u'Invalid CUIT.']
|
---|
3147 | Got:
|
---|
3148 | Traceback (most recent call last):
|
---|
3149 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3150 | compileflags, 1) in test.globs
|
---|
3151 | File "<doctest regressiontests.forms.tests.__test__.localflavor[541]>", line 1, in ?
|
---|
3152 | f.clean('27-10345678-1')
|
---|
3153 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 88, in clean
|
---|
3154 | raise ValidationError(ugettext("Invalid CUIT."))
|
---|
3155 | ValidationError: [u'CUIT inv\xe1lido.']
|
---|
3156 | ----------------------------------------------------------------------
|
---|
3157 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3158 | Failed example:
|
---|
3159 | f.clean(u'27-10345678-1')
|
---|
3160 | Expected:
|
---|
3161 | Traceback (most recent call last):
|
---|
3162 | ...
|
---|
3163 | ValidationError: [u'Invalid CUIT.']
|
---|
3164 | Got:
|
---|
3165 | Traceback (most recent call last):
|
---|
3166 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3167 | compileflags, 1) in test.globs
|
---|
3168 | File "<doctest regressiontests.forms.tests.__test__.localflavor[542]>", line 1, in ?
|
---|
3169 | f.clean(u'27-10345678-1')
|
---|
3170 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 88, in clean
|
---|
3171 | raise ValidationError(ugettext("Invalid CUIT."))
|
---|
3172 | ValidationError: [u'CUIT inv\xe1lido.']
|
---|
3173 | ----------------------------------------------------------------------
|
---|
3174 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3175 | Failed example:
|
---|
3176 | f.clean(None)
|
---|
3177 | Expected:
|
---|
3178 | Traceback (most recent call last):
|
---|
3179 | ...
|
---|
3180 | ValidationError: [u'This field is required.']
|
---|
3181 | Got:
|
---|
3182 | Traceback (most recent call last):
|
---|
3183 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3184 | compileflags, 1) in test.globs
|
---|
3185 | File "<doctest regressiontests.forms.tests.__test__.localflavor[543]>", line 1, in ?
|
---|
3186 | f.clean(None)
|
---|
3187 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 83, in clean
|
---|
3188 | value = super(ARCUITField, self).clean(value)
|
---|
3189 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
3190 | value = super(RegexField, self).clean(value)
|
---|
3191 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
3192 | super(CharField, self).clean(value)
|
---|
3193 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
3194 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
3195 | ValidationError: [u'Este campo es obligatorio.']
|
---|
3196 | ----------------------------------------------------------------------
|
---|
3197 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3198 | Failed example:
|
---|
3199 | f.clean('')
|
---|
3200 | Expected:
|
---|
3201 | Traceback (most recent call last):
|
---|
3202 | ...
|
---|
3203 | ValidationError: [u'This field is required.']
|
---|
3204 | Got:
|
---|
3205 | Traceback (most recent call last):
|
---|
3206 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3207 | compileflags, 1) in test.globs
|
---|
3208 | File "<doctest regressiontests.forms.tests.__test__.localflavor[544]>", line 1, in ?
|
---|
3209 | f.clean('')
|
---|
3210 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 83, in clean
|
---|
3211 | value = super(ARCUITField, self).clean(value)
|
---|
3212 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
3213 | value = super(RegexField, self).clean(value)
|
---|
3214 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
3215 | super(CharField, self).clean(value)
|
---|
3216 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
3217 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
3218 | ValidationError: [u'Este campo es obligatorio.']
|
---|
3219 | ----------------------------------------------------------------------
|
---|
3220 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3221 | Failed example:
|
---|
3222 | f.clean(u'')
|
---|
3223 | Expected:
|
---|
3224 | Traceback (most recent call last):
|
---|
3225 | ...
|
---|
3226 | ValidationError: [u'This field is required.']
|
---|
3227 | Got:
|
---|
3228 | Traceback (most recent call last):
|
---|
3229 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3230 | compileflags, 1) in test.globs
|
---|
3231 | File "<doctest regressiontests.forms.tests.__test__.localflavor[545]>", line 1, in ?
|
---|
3232 | f.clean(u'')
|
---|
3233 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 83, in clean
|
---|
3234 | value = super(ARCUITField, self).clean(value)
|
---|
3235 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
3236 | value = super(RegexField, self).clean(value)
|
---|
3237 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
3238 | super(CharField, self).clean(value)
|
---|
3239 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
3240 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
3241 | ValidationError: [u'Este campo es obligatorio.']
|
---|
3242 | ----------------------------------------------------------------------
|
---|
3243 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3244 | Failed example:
|
---|
3245 | f.clean('2-10123456-9')
|
---|
3246 | Expected:
|
---|
3247 | Traceback (most recent call last):
|
---|
3248 | ...
|
---|
3249 | ValidationError: [u'Enter a valid CUIT in XX-XXXXXXXX-X or XXXXXXXXXXXX format.']
|
---|
3250 | Got:
|
---|
3251 | Traceback (most recent call last):
|
---|
3252 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3253 | compileflags, 1) in test.globs
|
---|
3254 | File "<doctest regressiontests.forms.tests.__test__.localflavor[552]>", line 1, in ?
|
---|
3255 | f.clean('2-10123456-9')
|
---|
3256 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 83, in clean
|
---|
3257 | value = super(ARCUITField, self).clean(value)
|
---|
3258 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
3259 | raise ValidationError(self.error_message)
|
---|
3260 | ValidationError: [u'Introduzca un CUIT v\xe1lido en el formato XX-XXXXXXXX-X or XXXXXXXXXXXX.']
|
---|
3261 | ----------------------------------------------------------------------
|
---|
3262 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3263 | Failed example:
|
---|
3264 | f.clean('210123456-9')
|
---|
3265 | Expected:
|
---|
3266 | Traceback (most recent call last):
|
---|
3267 | ...
|
---|
3268 | ValidationError: [u'Enter a valid CUIT in XX-XXXXXXXX-X or XXXXXXXXXXXX format.']
|
---|
3269 | Got:
|
---|
3270 | Traceback (most recent call last):
|
---|
3271 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3272 | compileflags, 1) in test.globs
|
---|
3273 | File "<doctest regressiontests.forms.tests.__test__.localflavor[553]>", line 1, in ?
|
---|
3274 | f.clean('210123456-9')
|
---|
3275 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 83, in clean
|
---|
3276 | value = super(ARCUITField, self).clean(value)
|
---|
3277 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
3278 | raise ValidationError(self.error_message)
|
---|
3279 | ValidationError: [u'Introduzca un CUIT v\xe1lido en el formato XX-XXXXXXXX-X or XXXXXXXXXXXX.']
|
---|
3280 | ----------------------------------------------------------------------
|
---|
3281 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3282 | Failed example:
|
---|
3283 | f.clean('20-10123456')
|
---|
3284 | Expected:
|
---|
3285 | Traceback (most recent call last):
|
---|
3286 | ...
|
---|
3287 | ValidationError: [u'Enter a valid CUIT in XX-XXXXXXXX-X or XXXXXXXXXXXX format.']
|
---|
3288 | Got:
|
---|
3289 | Traceback (most recent call last):
|
---|
3290 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3291 | compileflags, 1) in test.globs
|
---|
3292 | File "<doctest regressiontests.forms.tests.__test__.localflavor[554]>", line 1, in ?
|
---|
3293 | f.clean('20-10123456')
|
---|
3294 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 83, in clean
|
---|
3295 | value = super(ARCUITField, self).clean(value)
|
---|
3296 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
3297 | raise ValidationError(self.error_message)
|
---|
3298 | ValidationError: [u'Introduzca un CUIT v\xe1lido en el formato XX-XXXXXXXX-X or XXXXXXXXXXXX.']
|
---|
3299 | ----------------------------------------------------------------------
|
---|
3300 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3301 | Failed example:
|
---|
3302 | f.clean('20-10123456-')
|
---|
3303 | Expected:
|
---|
3304 | Traceback (most recent call last):
|
---|
3305 | ...
|
---|
3306 | ValidationError: [u'Enter a valid CUIT in XX-XXXXXXXX-X or XXXXXXXXXXXX format.']
|
---|
3307 | Got:
|
---|
3308 | Traceback (most recent call last):
|
---|
3309 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3310 | compileflags, 1) in test.globs
|
---|
3311 | File "<doctest regressiontests.forms.tests.__test__.localflavor[555]>", line 1, in ?
|
---|
3312 | f.clean('20-10123456-')
|
---|
3313 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 83, in clean
|
---|
3314 | value = super(ARCUITField, self).clean(value)
|
---|
3315 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
3316 | raise ValidationError(self.error_message)
|
---|
3317 | ValidationError: [u'Introduzca un CUIT v\xe1lido en el formato XX-XXXXXXXX-X or XXXXXXXXXXXX.']
|
---|
3318 | ----------------------------------------------------------------------
|
---|
3319 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3320 | Failed example:
|
---|
3321 | f.clean('20-10123456-5')
|
---|
3322 | Expected:
|
---|
3323 | Traceback (most recent call last):
|
---|
3324 | ...
|
---|
3325 | ValidationError: [u'Invalid CUIT.']
|
---|
3326 | Got:
|
---|
3327 | Traceback (most recent call last):
|
---|
3328 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3329 | compileflags, 1) in test.globs
|
---|
3330 | File "<doctest regressiontests.forms.tests.__test__.localflavor[556]>", line 1, in ?
|
---|
3331 | f.clean('20-10123456-5')
|
---|
3332 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 88, in clean
|
---|
3333 | raise ValidationError(ugettext("Invalid CUIT."))
|
---|
3334 | ValidationError: [u'CUIT inv\xe1lido.']
|
---|
3335 | ----------------------------------------------------------------------
|
---|
3336 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3337 | Failed example:
|
---|
3338 | f.clean(u'2-10123456-9')
|
---|
3339 | Expected:
|
---|
3340 | Traceback (most recent call last):
|
---|
3341 | ...
|
---|
3342 | ValidationError: [u'Enter a valid CUIT in XX-XXXXXXXX-X or XXXXXXXXXXXX format.']
|
---|
3343 | Got:
|
---|
3344 | Traceback (most recent call last):
|
---|
3345 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3346 | compileflags, 1) in test.globs
|
---|
3347 | File "<doctest regressiontests.forms.tests.__test__.localflavor[557]>", line 1, in ?
|
---|
3348 | f.clean(u'2-10123456-9')
|
---|
3349 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 83, in clean
|
---|
3350 | value = super(ARCUITField, self).clean(value)
|
---|
3351 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 332, in clean
|
---|
3352 | raise ValidationError(self.error_message)
|
---|
3353 | ValidationError: [u'Introduzca un CUIT v\xe1lido en el formato XX-XXXXXXXX-X or XXXXXXXXXXXX.']
|
---|
3354 | ----------------------------------------------------------------------
|
---|
3355 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3356 | Failed example:
|
---|
3357 | f.clean('27-10345678-1')
|
---|
3358 | Expected:
|
---|
3359 | Traceback (most recent call last):
|
---|
3360 | ...
|
---|
3361 | ValidationError: [u'Invalid CUIT.']
|
---|
3362 | Got:
|
---|
3363 | Traceback (most recent call last):
|
---|
3364 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3365 | compileflags, 1) in test.globs
|
---|
3366 | File "<doctest regressiontests.forms.tests.__test__.localflavor[558]>", line 1, in ?
|
---|
3367 | f.clean('27-10345678-1')
|
---|
3368 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 88, in clean
|
---|
3369 | raise ValidationError(ugettext("Invalid CUIT."))
|
---|
3370 | ValidationError: [u'CUIT inv\xe1lido.']
|
---|
3371 | ----------------------------------------------------------------------
|
---|
3372 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3373 | Failed example:
|
---|
3374 | f.clean(u'27-10345678-1')
|
---|
3375 | Expected:
|
---|
3376 | Traceback (most recent call last):
|
---|
3377 | ...
|
---|
3378 | ValidationError: [u'Invalid CUIT.']
|
---|
3379 | Got:
|
---|
3380 | Traceback (most recent call last):
|
---|
3381 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3382 | compileflags, 1) in test.globs
|
---|
3383 | File "<doctest regressiontests.forms.tests.__test__.localflavor[559]>", line 1, in ?
|
---|
3384 | f.clean(u'27-10345678-1')
|
---|
3385 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ar/forms.py", line 88, in clean
|
---|
3386 | raise ValidationError(ugettext("Invalid CUIT."))
|
---|
3387 | ValidationError: [u'CUIT inv\xe1lido.']
|
---|
3388 | ----------------------------------------------------------------------
|
---|
3389 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3390 | Failed example:
|
---|
3391 | f.clean(None)
|
---|
3392 | Expected:
|
---|
3393 | Traceback (most recent call last):
|
---|
3394 | ...
|
---|
3395 | ValidationError: [u'This field is required.']
|
---|
3396 | Got:
|
---|
3397 | Traceback (most recent call last):
|
---|
3398 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3399 | compileflags, 1) in test.globs
|
---|
3400 | File "<doctest regressiontests.forms.tests.__test__.localflavor[570]>", line 1, in ?
|
---|
3401 | f.clean(None)
|
---|
3402 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
3403 | value = super(RegexField, self).clean(value)
|
---|
3404 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
3405 | super(CharField, self).clean(value)
|
---|
3406 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
3407 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
3408 | ValidationError: [u'Este campo es obligatorio.']
|
---|
3409 | ----------------------------------------------------------------------
|
---|
3410 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3411 | Failed example:
|
---|
3412 | f.clean('')
|
---|
3413 | Expected:
|
---|
3414 | Traceback (most recent call last):
|
---|
3415 | ...
|
---|
3416 | ValidationError: [u'This field is required.']
|
---|
3417 | Got:
|
---|
3418 | Traceback (most recent call last):
|
---|
3419 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3420 | compileflags, 1) in test.globs
|
---|
3421 | File "<doctest regressiontests.forms.tests.__test__.localflavor[571]>", line 1, in ?
|
---|
3422 | f.clean('')
|
---|
3423 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 328, in clean
|
---|
3424 | value = super(RegexField, self).clean(value)
|
---|
3425 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 117, in clean
|
---|
3426 | super(CharField, self).clean(value)
|
---|
3427 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
3428 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
3429 | ValidationError: [u'Este campo es obligatorio.']
|
---|
3430 | ----------------------------------------------------------------------
|
---|
3431 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3432 | Failed example:
|
---|
3433 | f.clean(None)
|
---|
3434 | Expected:
|
---|
3435 | Traceback (most recent call last):
|
---|
3436 | ...
|
---|
3437 | ValidationError: [u'This field is required.']
|
---|
3438 | Got:
|
---|
3439 | Traceback (most recent call last):
|
---|
3440 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3441 | compileflags, 1) in test.globs
|
---|
3442 | File "<doctest regressiontests.forms.tests.__test__.localflavor[593]>", line 1, in ?
|
---|
3443 | f.clean(None)
|
---|
3444 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ca/forms.py", line 27, in clean
|
---|
3445 | super(CAPhoneNumberField, self).clean(value)
|
---|
3446 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
3447 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
3448 | ValidationError: [u'Este campo es obligatorio.']
|
---|
3449 | ----------------------------------------------------------------------
|
---|
3450 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3451 | Failed example:
|
---|
3452 | f.clean('')
|
---|
3453 | Expected:
|
---|
3454 | Traceback (most recent call last):
|
---|
3455 | ...
|
---|
3456 | ValidationError: [u'This field is required.']
|
---|
3457 | Got:
|
---|
3458 | Traceback (most recent call last):
|
---|
3459 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3460 | compileflags, 1) in test.globs
|
---|
3461 | File "<doctest regressiontests.forms.tests.__test__.localflavor[594]>", line 1, in ?
|
---|
3462 | f.clean('')
|
---|
3463 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ca/forms.py", line 27, in clean
|
---|
3464 | super(CAPhoneNumberField, self).clean(value)
|
---|
3465 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
3466 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
3467 | ValidationError: [u'Este campo es obligatorio.']
|
---|
3468 | ----------------------------------------------------------------------
|
---|
3469 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3470 | Failed example:
|
---|
3471 | f.clean(None)
|
---|
3472 | Expected:
|
---|
3473 | Traceback (most recent call last):
|
---|
3474 | ...
|
---|
3475 | ValidationError: [u'This field is required.']
|
---|
3476 | Got:
|
---|
3477 | Traceback (most recent call last):
|
---|
3478 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3479 | compileflags, 1) in test.globs
|
---|
3480 | File "<doctest regressiontests.forms.tests.__test__.localflavor[615]>", line 1, in ?
|
---|
3481 | f.clean(None)
|
---|
3482 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ca/forms.py", line 44, in clean
|
---|
3483 | super(CAProvinceField, self).clean(value)
|
---|
3484 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
3485 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
3486 | ValidationError: [u'Este campo es obligatorio.']
|
---|
3487 | ----------------------------------------------------------------------
|
---|
3488 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3489 | Failed example:
|
---|
3490 | f.clean('')
|
---|
3491 | Expected:
|
---|
3492 | Traceback (most recent call last):
|
---|
3493 | ...
|
---|
3494 | ValidationError: [u'This field is required.']
|
---|
3495 | Got:
|
---|
3496 | Traceback (most recent call last):
|
---|
3497 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3498 | compileflags, 1) in test.globs
|
---|
3499 | File "<doctest regressiontests.forms.tests.__test__.localflavor[616]>", line 1, in ?
|
---|
3500 | f.clean('')
|
---|
3501 | File "/usr/lib/python2.4/site-packages/django/contrib/localflavor/ca/forms.py", line 44, in clean
|
---|
3502 | super(CAProvinceField, self).clean(value)
|
---|
3503 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
3504 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
3505 | ValidationError: [u'Este campo es obligatorio.']
|
---|
3506 | ----------------------------------------------------------------------
|
---|
3507 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3508 | Failed example:
|
---|
3509 | f.clean('2006-4-31')
|
---|
3510 | Expected:
|
---|
3511 | Traceback (most recent call last):
|
---|
3512 | ...
|
---|
3513 | ValidationError: [u'Enter a valid date.']
|
---|
3514 | Got:
|
---|
3515 | Traceback (most recent call last):
|
---|
3516 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3517 | compileflags, 1) in test.globs
|
---|
3518 | File "<doctest regressiontests.forms.tests.__test__.localflavor[649]>", line 1, in ?
|
---|
3519 | f.clean('2006-4-31')
|
---|
3520 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 245, in clean
|
---|
3521 | raise ValidationError(ugettext(u'Enter a valid date.'))
|
---|
3522 | ValidationError: [u'Introduzca una fecha v\xe1lida.']
|
---|
3523 | ----------------------------------------------------------------------
|
---|
3524 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3525 | Failed example:
|
---|
3526 | f.clean('200a-10-25')
|
---|
3527 | Expected:
|
---|
3528 | Traceback (most recent call last):
|
---|
3529 | ...
|
---|
3530 | ValidationError: [u'Enter a valid date.']
|
---|
3531 | Got:
|
---|
3532 | Traceback (most recent call last):
|
---|
3533 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3534 | compileflags, 1) in test.globs
|
---|
3535 | File "<doctest regressiontests.forms.tests.__test__.localflavor[650]>", line 1, in ?
|
---|
3536 | f.clean('200a-10-25')
|
---|
3537 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 245, in clean
|
---|
3538 | raise ValidationError(ugettext(u'Enter a valid date.'))
|
---|
3539 | ValidationError: [u'Introduzca una fecha v\xe1lida.']
|
---|
3540 | ----------------------------------------------------------------------
|
---|
3541 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3542 | Failed example:
|
---|
3543 | f.clean('10/25/06')
|
---|
3544 | Expected:
|
---|
3545 | Traceback (most recent call last):
|
---|
3546 | ...
|
---|
3547 | ValidationError: [u'Enter a valid date.']
|
---|
3548 | Got:
|
---|
3549 | Traceback (most recent call last):
|
---|
3550 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3551 | compileflags, 1) in test.globs
|
---|
3552 | File "<doctest regressiontests.forms.tests.__test__.localflavor[651]>", line 1, in ?
|
---|
3553 | f.clean('10/25/06')
|
---|
3554 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 245, in clean
|
---|
3555 | raise ValidationError(ugettext(u'Enter a valid date.'))
|
---|
3556 | ValidationError: [u'Introduzca una fecha v\xe1lida.']
|
---|
3557 | ----------------------------------------------------------------------
|
---|
3558 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3559 | Failed example:
|
---|
3560 | f.clean(None)
|
---|
3561 | Expected:
|
---|
3562 | Traceback (most recent call last):
|
---|
3563 | ...
|
---|
3564 | ValidationError: [u'This field is required.']
|
---|
3565 | Got:
|
---|
3566 | Traceback (most recent call last):
|
---|
3567 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3568 | compileflags, 1) in test.globs
|
---|
3569 | File "<doctest regressiontests.forms.tests.__test__.localflavor[652]>", line 1, in ?
|
---|
3570 | f.clean(None)
|
---|
3571 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 233, in clean
|
---|
3572 | super(DateField, self).clean(value)
|
---|
3573 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 93, in clean
|
---|
3574 | raise ValidationError(ugettext(u'This field is required.'))
|
---|
3575 | ValidationError: [u'Este campo es obligatorio.']
|
---|
3576 | ----------------------------------------------------------------------
|
---|
3577 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3578 | Failed example:
|
---|
3579 | f.clean('2006-10-25')
|
---|
3580 | Expected:
|
---|
3581 | Traceback (most recent call last):
|
---|
3582 | ...
|
---|
3583 | ValidationError: [u'Enter a valid date.']
|
---|
3584 | Got:
|
---|
3585 | Traceback (most recent call last):
|
---|
3586 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3587 | compileflags, 1) in test.globs
|
---|
3588 | File "<doctest regressiontests.forms.tests.__test__.localflavor[662]>", line 1, in ?
|
---|
3589 | f.clean('2006-10-25')
|
---|
3590 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 245, in clean
|
---|
3591 | raise ValidationError(ugettext(u'Enter a valid date.'))
|
---|
3592 | ValidationError: [u'Introduzca una fecha v\xe1lida.']
|
---|
3593 | ----------------------------------------------------------------------
|
---|
3594 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3595 | Failed example:
|
---|
3596 | f.clean('25/10/2006')
|
---|
3597 | Expected:
|
---|
3598 | Traceback (most recent call last):
|
---|
3599 | ...
|
---|
3600 | ValidationError: [u'Enter a valid date.']
|
---|
3601 | Got:
|
---|
3602 | Traceback (most recent call last):
|
---|
3603 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3604 | compileflags, 1) in test.globs
|
---|
3605 | File "<doctest regressiontests.forms.tests.__test__.localflavor[663]>", line 1, in ?
|
---|
3606 | f.clean('25/10/2006')
|
---|
3607 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 245, in clean
|
---|
3608 | raise ValidationError(ugettext(u'Enter a valid date.'))
|
---|
3609 | ValidationError: [u'Introduzca una fecha v\xe1lida.']
|
---|
3610 | ----------------------------------------------------------------------
|
---|
3611 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3612 | Failed example:
|
---|
3613 | f.clean('25/10/06')
|
---|
3614 | Expected:
|
---|
3615 | Traceback (most recent call last):
|
---|
3616 | ...
|
---|
3617 | ValidationError: [u'Enter a valid date.']
|
---|
3618 | Got:
|
---|
3619 | Traceback (most recent call last):
|
---|
3620 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3621 | compileflags, 1) in test.globs
|
---|
3622 | File "<doctest regressiontests.forms.tests.__test__.localflavor[664]>", line 1, in ?
|
---|
3623 | f.clean('25/10/06')
|
---|
3624 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 245, in clean
|
---|
3625 | raise ValidationError(ugettext(u'Enter a valid date.'))
|
---|
3626 | ValidationError: [u'Introduzca una fecha v\xe1lida.']
|
---|
3627 | ----------------------------------------------------------------------
|
---|
3628 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3629 | Failed example:
|
---|
3630 | f.clean('hello')
|
---|
3631 | Expected:
|
---|
3632 | Traceback (most recent call last):
|
---|
3633 | ...
|
---|
3634 | ValidationError: [u'Enter a valid date/time.']
|
---|
3635 | Got:
|
---|
3636 | Traceback (most recent call last):
|
---|
3637 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3638 | compileflags, 1) in test.globs
|
---|
3639 | File "<doctest regressiontests.forms.tests.__test__.localflavor[683]>", line 1, in ?
|
---|
3640 | f.clean('hello')
|
---|
3641 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 308, in clean
|
---|
3642 | raise ValidationError(ugettext(u'Enter a valid date/time.'))
|
---|
3643 | ValidationError: [u'Introduzca una fecha/hora v\xe1lida.']
|
---|
3644 | ----------------------------------------------------------------------
|
---|
3645 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3646 | Failed example:
|
---|
3647 | f.clean('2006-10-25 4:30 p.m.')
|
---|
3648 | Expected:
|
---|
3649 | Traceback (most recent call last):
|
---|
3650 | ...
|
---|
3651 | ValidationError: [u'Enter a valid date/time.']
|
---|
3652 | Got:
|
---|
3653 | Traceback (most recent call last):
|
---|
3654 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3655 | compileflags, 1) in test.globs
|
---|
3656 | File "<doctest regressiontests.forms.tests.__test__.localflavor[684]>", line 1, in ?
|
---|
3657 | f.clean('2006-10-25 4:30 p.m.')
|
---|
3658 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 308, in clean
|
---|
3659 | raise ValidationError(ugettext(u'Enter a valid date/time.'))
|
---|
3660 | ValidationError: [u'Introduzca una fecha/hora v\xe1lida.']
|
---|
3661 | ----------------------------------------------------------------------
|
---|
3662 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.localflavor
|
---|
3663 | Failed example:
|
---|
3664 | f.clean('2006-10-25 14:30:45')
|
---|
3665 | Expected:
|
---|
3666 | Traceback (most recent call last):
|
---|
3667 | ...
|
---|
3668 | ValidationError: [u'Enter a valid date/time.']
|
---|
3669 | Got:
|
---|
3670 | Traceback (most recent call last):
|
---|
3671 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1256, in __run
|
---|
3672 | compileflags, 1) in test.globs
|
---|
3673 | File "<doctest regressiontests.forms.tests.__test__.localflavor[691]>", line 1, in ?
|
---|
3674 | f.clean('2006-10-25 14:30:45')
|
---|
3675 | File "/usr/lib/python2.4/site-packages/django/newforms/fields.py", line 308, in clean
|
---|
3676 | raise ValidationError(ugettext(u'Enter a valid date/time.'))
|
---|
3677 | ValidationError: [u'Introduzca una fecha/hora v\xe1lida.']
|
---|
3678 |
|
---|
3679 |
|
---|
3680 | ======================================================================
|
---|
3681 | FAIL: Doctest: regressiontests.forms.tests.__test__.regressions
|
---|
3682 | ----------------------------------------------------------------------
|
---|
3683 | Traceback (most recent call last):
|
---|
3684 | File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 2169, in runTest
|
---|
3685 | raise self.failureException(self.format_failure(new.getvalue()))
|
---|
3686 | AssertionError: Failed doctest test for regressiontests.forms.tests.__test__.regressions
|
---|
3687 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line unknown line number, in regressions
|
---|
3688 |
|
---|
3689 | ----------------------------------------------------------------------
|
---|
3690 | File "/home/lin/src/SVN/django/tests/regressiontests/forms/tests.py", line ?, in regressiontests.forms.tests.__test__.regressions
|
---|
3691 | Failed example:
|
---|
3692 | print f.as_p()
|
---|
3693 | Expected:
|
---|
3694 | <p><label for="id_username">Username:</label> <input id="id_username" type="text" name="username" maxlength="10" /></p>
|
---|
3695 | Got:
|
---|
3696 | <p><label for="id_username">Nombre de usuario:</label> <input id="id_username" type="text" name="username" maxlength="10" /></p>
|
---|
3697 |
|
---|
3698 |
|
---|
3699 | ======================================================================
|
---|
3700 | FAIL: test_apnumber (regressiontests.humanize.tests.HumanizeTests)
|
---|
3701 | ----------------------------------------------------------------------
|
---|
3702 | Traceback (most recent call last):
|
---|
3703 | File "/home/lin/src/SVN/django/tests/regressiontests/humanize/tests.py", line 52, in test_apnumber
|
---|
3704 | self.humanize_tester(test_list, result_list, 'apnumber')
|
---|
3705 | File "/home/lin/src/SVN/django/tests/regressiontests/humanize/tests.py", line 19, in humanize_tester
|
---|
3706 | msg="%s test failed, produced %s, should've produced %s" % (method, rendered, result_list[index]))
|
---|
3707 | AssertionError: apnumber test failed, produced uno, should've produced one
|
---|
3708 |
|
---|
3709 | ======================================================================
|
---|
3710 | FAIL: test_intword (regressiontests.humanize.tests.HumanizeTests)
|
---|
3711 | ----------------------------------------------------------------------
|
---|
3712 | Traceback (most recent call last):
|
---|
3713 | File "/home/lin/src/SVN/django/tests/regressiontests/humanize/tests.py", line 45, in test_intword
|
---|
3714 | self.humanize_tester(test_list, result_list, 'intword')
|
---|
3715 | File "/home/lin/src/SVN/django/tests/regressiontests/humanize/tests.py", line 19, in humanize_tester
|
---|
3716 | msg="%s test failed, produced %s, should've produced %s" % (method, rendered, result_list[index]))
|
---|
3717 | AssertionError: <unprintable instance object>
|
---|
3718 |
|
---|
3719 | ----------------------------------------------------------------------
|
---|
3720 | Ran 167 tests in 57.384s
|
---|
3721 |
|
---|
3722 | FAILED (failures=7, errors=1)
|
---|