| 1 |
# -*- coding: utf-8 -*- |
|---|
| 2 |
from extra import tests as extra_tests |
|---|
| 3 |
from fields import tests as fields_tests |
|---|
| 4 |
from forms import tests as form_tests |
|---|
| 5 |
from error_messages import tests as custom_error_message_tests |
|---|
| 6 |
from localflavor.ar import tests as localflavor_ar_tests |
|---|
| 7 |
from localflavor.at import tests as localflavor_at_tests |
|---|
| 8 |
from localflavor.au import tests as localflavor_au_tests |
|---|
| 9 |
from localflavor.br import tests as localflavor_br_tests |
|---|
| 10 |
from localflavor.ca import tests as localflavor_ca_tests |
|---|
| 11 |
from localflavor.ch import tests as localflavor_ch_tests |
|---|
| 12 |
from localflavor.cl import tests as localflavor_cl_tests |
|---|
| 13 |
from localflavor.de import tests as localflavor_de_tests |
|---|
| 14 |
from localflavor.es import tests as localflavor_es_tests |
|---|
| 15 |
from localflavor.fi import tests as localflavor_fi_tests |
|---|
| 16 |
from localflavor.fr import tests as localflavor_fr_tests |
|---|
| 17 |
from localflavor.generic import tests as localflavor_generic_tests |
|---|
| 18 |
from localflavor.is_ import tests as localflavor_is_tests |
|---|
| 19 |
from localflavor.it import tests as localflavor_it_tests |
|---|
| 20 |
from localflavor.jp import tests as localflavor_jp_tests |
|---|
| 21 |
from localflavor.nl import tests as localflavor_nl_tests |
|---|
| 22 |
from localflavor.pl import tests as localflavor_pl_tests |
|---|
| 23 |
from localflavor.ro import tests as localflavor_ro_tests |
|---|
| 24 |
from localflavor.sk import tests as localflavor_sk_tests |
|---|
| 25 |
from localflavor.uk import tests as localflavor_uk_tests |
|---|
| 26 |
from localflavor.us import tests as localflavor_us_tests |
|---|
| 27 |
from localflavor.za import tests as localflavor_za_tests |
|---|
| 28 |
from regressions import tests as regression_tests |
|---|
| 29 |
from util import tests as util_tests |
|---|
| 30 |
from widgets import tests as widgets_tests |
|---|
| 31 |
from formsets import tests as formset_tests |
|---|
| 32 |
from media import media_tests |
|---|
| 33 |
|
|---|
| 34 |
__test__ = { |
|---|
| 35 |
'extra_tests': extra_tests, |
|---|
| 36 |
'fields_tests': fields_tests, |
|---|
| 37 |
'form_tests': form_tests, |
|---|
| 38 |
'custom_error_message_tests': custom_error_message_tests, |
|---|
| 39 |
'localflavor_ar_tests': localflavor_ar_tests, |
|---|
| 40 |
'localflavor_at_tests': localflavor_at_tests, |
|---|
| 41 |
'localflavor_au_tests': localflavor_au_tests, |
|---|
| 42 |
'localflavor_br_tests': localflavor_br_tests, |
|---|
| 43 |
'localflavor_ca_tests': localflavor_ca_tests, |
|---|
| 44 |
'localflavor_ch_tests': localflavor_ch_tests, |
|---|
| 45 |
'localflavor_cl_tests': localflavor_cl_tests, |
|---|
| 46 |
'localflavor_de_tests': localflavor_de_tests, |
|---|
| 47 |
'localflavor_es_tests': localflavor_es_tests, |
|---|
| 48 |
'localflavor_fi_tests': localflavor_fi_tests, |
|---|
| 49 |
'localflavor_fr_tests': localflavor_fr_tests, |
|---|
| 50 |
'localflavor_generic_tests': localflavor_generic_tests, |
|---|
| 51 |
'localflavor_is_tests': localflavor_is_tests, |
|---|
| 52 |
'localflavor_it_tests': localflavor_it_tests, |
|---|
| 53 |
'localflavor_jp_tests': localflavor_jp_tests, |
|---|
| 54 |
'localflavor_nl_tests': localflavor_nl_tests, |
|---|
| 55 |
'localflavor_pl_tests': localflavor_pl_tests, |
|---|
| 56 |
'localflavor_ro_tests': localflavor_ro_tests, |
|---|
| 57 |
'localflavor_sk_tests': localflavor_sk_tests, |
|---|
| 58 |
'localflavor_uk_tests': localflavor_uk_tests, |
|---|
| 59 |
'localflavor_us_tests': localflavor_us_tests, |
|---|
| 60 |
'localflavor_za_tests': localflavor_za_tests, |
|---|
| 61 |
'regression_tests': regression_tests, |
|---|
| 62 |
'formset_tests': formset_tests, |
|---|
| 63 |
'media_tests': media_tests, |
|---|
| 64 |
'util_tests': util_tests, |
|---|
| 65 |
'widgets_tests': widgets_tests, |
|---|
| 66 |
} |
|---|
| 67 |
|
|---|
| 68 |
if __name__ == "__main__": |
|---|
| 69 |
import doctest |
|---|
| 70 |
doctest.testmod() |
|---|