diff options
Diffstat (limited to 'tests/urls.py')
| -rw-r--r-- | tests/urls.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/urls.py b/tests/urls.py new file mode 100644 index 0000000..359fd8f --- /dev/null +++ b/tests/urls.py @@ -0,0 +1,15 @@ +""" +URLpatterns for the debug toolbar. + +These should not be loaded explicitly; the debug toolbar middleware will patch +this into the urlconf for the request. +""" +from django.conf.urls.defaults import * +from django.contrib import admin + +admin.autodiscover() + +urlpatterns = patterns('', + # This pattern should be last to ensure tests still work + url(r'^execute_sql/$', 'tests.views.execute_sql'), +) |
