django/tests/regressiontests/test_utils/urls.py

9 lines
142 B
Python

from django.conf.urls import patterns
import views
urlpatterns = patterns('',
(r'^test_utils/get_person/(\d+)/$', views.get_person),
)