summaryrefslogtreecommitdiff
path: root/tests/urls.py
diff options
context:
space:
mode:
authorBrian Rosner <brosner@gmail.com>2008-11-13 19:03:44 +0000
committerBrian Rosner <brosner@gmail.com>2008-11-13 19:03:44 +0000
commitf751d5b71348b4f86fcc81877d6b28d89ad03186 (patch)
tree723717cd21f4f9c31e82879e0ef6780b318353c4 /tests/urls.py
parentdfa90aec1bed28f581b0f0471dc95860bb166cc9 (diff)
downloaddjango-f751d5b71348b4f86fcc81877d6b28d89ad03186.tar.gz
Fixed #9498 -- Handle a formset correctly when the foreign key is not available (for now).
This case pops up with generic foreign key inlines after [9297]. Added tests to handle future regressions with generic foreign key inlines in the admin. Thanks markus and danielr for patches. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9412 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/urls.py')
-rw-r--r--tests/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/urls.py b/tests/urls.py
index a8dc583aa1..b6c9d6e030 100644
--- a/tests/urls.py
+++ b/tests/urls.py
@@ -23,6 +23,7 @@ urlpatterns = patterns('',
# admin view tests
(r'^test_admin/', include('regressiontests.admin_views.urls')),
+ (r'^generic_inline_admin/', include('regressiontests.generic_inline_admin.urls')),
(r'^utils/', include('regressiontests.utils.urls')),