diff options
Diffstat (limited to 'repoze/bfg/tests/routesapp')
| -rw-r--r-- | repoze/bfg/tests/routesapp/__init__.py | 1 | ||||
| -rw-r--r-- | repoze/bfg/tests/routesapp/configure.zcml | 12 | ||||
| -rw-r--r-- | repoze/bfg/tests/routesapp/models.py | 5 | ||||
| -rw-r--r-- | repoze/bfg/tests/routesapp/templates/fixture.pt | 6 | ||||
| -rw-r--r-- | repoze/bfg/tests/routesapp/views.py | 8 |
5 files changed, 0 insertions, 32 deletions
diff --git a/repoze/bfg/tests/routesapp/__init__.py b/repoze/bfg/tests/routesapp/__init__.py deleted file mode 100644 index 546616b2c..000000000 --- a/repoze/bfg/tests/routesapp/__init__.py +++ /dev/null @@ -1 +0,0 @@ -# fixture application diff --git a/repoze/bfg/tests/routesapp/configure.zcml b/repoze/bfg/tests/routesapp/configure.zcml deleted file mode 100644 index 01062b6d4..000000000 --- a/repoze/bfg/tests/routesapp/configure.zcml +++ /dev/null @@ -1,12 +0,0 @@ -<configure xmlns="http://namespaces.repoze.org/bfg"> - - <include package="repoze.bfg.includes" /> - - <route - path=":id" - name="default" - view=".views.fixture_view" - permission="repoze.view" - /> - -</configure> diff --git a/repoze/bfg/tests/routesapp/models.py b/repoze/bfg/tests/routesapp/models.py deleted file mode 100644 index a57b06308..000000000 --- a/repoze/bfg/tests/routesapp/models.py +++ /dev/null @@ -1,5 +0,0 @@ -from zope.interface import Interface - -class IFixture(Interface): - pass - diff --git a/repoze/bfg/tests/routesapp/templates/fixture.pt b/repoze/bfg/tests/routesapp/templates/fixture.pt deleted file mode 100644 index 06dd4e2b1..000000000 --- a/repoze/bfg/tests/routesapp/templates/fixture.pt +++ /dev/null @@ -1,6 +0,0 @@ -<html xmlns="http://www.w3.org/1999/xhtml" - xmlns:tal="http://xml.zope.org/namespaces/tal"> -<head></head> -<body> -</body> -</html> diff --git a/repoze/bfg/tests/routesapp/views.py b/repoze/bfg/tests/routesapp/views.py deleted file mode 100644 index f805b88c9..000000000 --- a/repoze/bfg/tests/routesapp/views.py +++ /dev/null @@ -1,8 +0,0 @@ -from zope.interface import Interface - -def fixture_view(context, request): - """ """ - -class IDummy(Interface): - pass - |
