~pfalcon/linaro-license-protection/openid-exception-for-internal-hosts

« back to all changes in this revision

Viewing changes to license_protected_downloads/tests/__init__.py

  • Committer: Danilo Šegan
  • Date: 2012-11-28 13:18:47 UTC
  • mfrom: (150.1.3 bug-1084013)
  • Revision ID: danilo.segan@linaro.org-20121128131847-gccika5774ylqi78
Fix 1084013: support uppercase file names in BUILD-INFO.txt.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from license_protected_downloads.tests.test_buildinfo import BuildInfoTests
 
1
from license_protected_downloads.tests.test_buildinfo import (
 
2
    BuildInfoTests,
 
3
    FileNameMatchingTests,
 
4
    )
2
5
from license_protected_downloads.tests.test_models import LicenseTestCase
3
6
from license_protected_downloads.tests.test_pep8 import TestPep8
4
7
from license_protected_downloads.tests.test_pyflakes import TestPyflakes
5
8
from license_protected_downloads.tests.test_views import (
 
9
    FileViewTests,
6
10
    HowtoViewTests,
7
11
    ViewTests,
8
12
    )
14
18
 
15
19
#starts the test suite
16
20
__test__ = {
 
21
    'BuildInfoTests': BuildInfoTests,
 
22
    'FileNameMatchingTests': FileNameMatchingTests,
 
23
    'FileViewTests': FileViewTests,
 
24
    'HowtoViewTests': HowtoViewTests,
17
25
    'LicenseTestCase': LicenseTestCase,
18
 
    'ViewTests': ViewTests,
19
 
    'HowtoViewTests': HowtoViewTests,
20
 
    'BuildInfoTests': BuildInfoTests,
 
26
    'RenderTextFilesTests': RenderTextFilesTests,
 
27
    'SetsuperuserCommandTest': SetsuperuserCommandTest,
 
28
    'TestOpenIDAuth': TestOpenIDAuth,
21
29
    'TestPep8': TestPep8,
22
30
    'TestPyflakes': TestPyflakes,
23
 
    'TestOpenIDAuth': TestOpenIDAuth,
24
 
    'SetsuperuserCommandTest': SetsuperuserCommandTest,
25
 
    'RenderTextFilesTests': RenderTextFilesTests,
 
31
    'ViewTests': ViewTests,
26
32
}