summaryrefslogtreecommitdiff
path: root/tests/wsgi/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wsgi/urls.py')
-rw-r--r--tests/wsgi/urls.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/wsgi/urls.py b/tests/wsgi/urls.py
new file mode 100644
index 0000000000..9639f0fd34
--- /dev/null
+++ b/tests/wsgi/urls.py
@@ -0,0 +1,10 @@
+from django.conf.urls import url, patterns
+from django.http import HttpResponse
+
+def helloworld(request):
+ return HttpResponse("Hello World!")
+
+urlpatterns = patterns(
+ "",
+ url("^$", helloworld)
+ )