Converted Icelandic localflavor doctests to unittests. We have always been at war with doctests. Thanks to Idan Gazit.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14944 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
6a362d3684
commit
58bc881990
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from localflavor.cz import tests as localflavor_cz_tests
|
from localflavor.cz import tests as localflavor_cz_tests
|
||||||
from localflavor.is_ import tests as localflavor_is_tests
|
|
||||||
from localflavor.it import tests as localflavor_it_tests
|
from localflavor.it import tests as localflavor_it_tests
|
||||||
from localflavor.jp import tests as localflavor_jp_tests
|
from localflavor.jp import tests as localflavor_jp_tests
|
||||||
from localflavor.kw import tests as localflavor_kw_tests
|
from localflavor.kw import tests as localflavor_kw_tests
|
||||||
|
@ -31,12 +30,12 @@ from localflavor.generic import GenericLocalFlavorTests
|
||||||
from localflavor.id import IDLocalFlavorTests
|
from localflavor.id import IDLocalFlavorTests
|
||||||
from localflavor.ie import IELocalFlavorTests
|
from localflavor.ie import IELocalFlavorTests
|
||||||
from localflavor.il import ILLocalFlavorTests
|
from localflavor.il import ILLocalFlavorTests
|
||||||
|
from localflavor.is_ import ISLocalFlavorTests
|
||||||
from localflavor.tr import TRLocalFlavorTests
|
from localflavor.tr import TRLocalFlavorTests
|
||||||
|
|
||||||
|
|
||||||
__test__ = {
|
__test__ = {
|
||||||
'localflavor_cz_tests': localflavor_cz_tests,
|
'localflavor_cz_tests': localflavor_cz_tests,
|
||||||
'localflavor_is_tests': localflavor_is_tests,
|
|
||||||
'localflavor_it_tests': localflavor_it_tests,
|
'localflavor_it_tests': localflavor_it_tests,
|
||||||
'localflavor_jp_tests': localflavor_jp_tests,
|
'localflavor_jp_tests': localflavor_jp_tests,
|
||||||
'localflavor_kw_tests': localflavor_kw_tests,
|
'localflavor_kw_tests': localflavor_kw_tests,
|
||||||
|
|
|
@ -29,5 +29,6 @@ from regressiontests.forms.localflavortests import (
|
||||||
IDLocalFlavorTests,
|
IDLocalFlavorTests,
|
||||||
IELocalFlavorTests,
|
IELocalFlavorTests,
|
||||||
ILLocalFlavorTests,
|
ILLocalFlavorTests,
|
||||||
|
ISLocalFlavorTests,
|
||||||
TRLocalFlavorTests,
|
TRLocalFlavorTests,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue