aboutsummaryrefslogtreecommitdiffstats
path: root/tests/urls.py
blob: 359fd8fae1f949b2971c3f95c2de303e499b3393 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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'),
)