2008-12-24 02:25:24 +08:00
|
|
|
from django.contrib import admin
|
2020-02-05 04:58:07 +08:00
|
|
|
from django.test import SimpleTestCase
|
2008-12-24 02:25:24 +08:00
|
|
|
|
|
|
|
|
2020-02-05 04:58:07 +08:00
|
|
|
class AdminAutoDiscoverTests(SimpleTestCase):
|
2008-12-24 02:25:24 +08:00
|
|
|
"""
|
|
|
|
Test for bug #8245 - don't raise an AlreadyRegistered exception when using
|
|
|
|
autodiscover() and an admin.py module contains an error.
|
|
|
|
"""
|
2014-07-26 09:23:01 +08:00
|
|
|
def test_double_call_autodiscover(self):
|
2010-04-27 23:04:41 +08:00
|
|
|
# The first time autodiscover is called, we should get our real error.
|
2020-02-05 04:58:07 +08:00
|
|
|
with self.assertRaisesMessage(Exception, 'Bad admin module'):
|
2010-04-27 23:04:41 +08:00
|
|
|
admin.autodiscover()
|
|
|
|
# Calling autodiscover again should raise the very same error it did
|
|
|
|
# the first time, not an AlreadyRegistered error.
|
2020-02-05 04:58:07 +08:00
|
|
|
with self.assertRaisesMessage(Exception, 'Bad admin module'):
|
2010-04-27 23:04:41 +08:00
|
|
|
admin.autodiscover()
|