aboutsummaryrefslogtreecommitdiffstats
path: root/tests/urls.py
blob: d1cb07f27b38d21520bcaa53a65b6e8bdf549e99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
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('',
    url(r'^execute_sql/$', 'tests.views.execute_sql'),
)