~mhall119/django-openid-auth/strict-username-requirements

« back to all changes in this revision

Viewing changes to django_openid_auth/tests/__init__.py

myOpenID's attribute exchange implementation uses non-standard attribute 
names from an old draft of the specification.  Ask for these attributes 
in addition to the standard ones to support that provider.

Fixes bug #607553.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
def suite():
33
33
    suite = unittest.TestSuite()
34
 
    for name in ['test_store', 'test_views']:
 
34
    for name in ['test_auth', 'test_store', 'test_views']:
35
35
        mod = __import__('%s.%s' % (__name__, name), {}, {}, ['suite'])
36
36
        suite.addTest(mod.suite())
37
37
    return suite