summaryrefslogtreecommitdiff
path: root/pyramid/tests/pkgs/includeapp1/root.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyramid/tests/pkgs/includeapp1/root.py')
-rw-r--r--pyramid/tests/pkgs/includeapp1/root.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/pyramid/tests/pkgs/includeapp1/root.py b/pyramid/tests/pkgs/includeapp1/root.py
deleted file mode 100644
index f56203cfa..000000000
--- a/pyramid/tests/pkgs/includeapp1/root.py
+++ /dev/null
@@ -1,10 +0,0 @@
-from pyramid.response import Response
-
-def aview(request):
- return Response('root')
-
-def configure(config):
- config.add_view(aview)
- config.include('pyramid.tests.pkgs.includeapp1.two.configure')
- config.commit()
-