summaryrefslogtreecommitdiff
path: root/repoze/bfg/tests/test_url.py
diff options
context:
space:
mode:
Diffstat (limited to 'repoze/bfg/tests/test_url.py')
-rw-r--r--repoze/bfg/tests/test_url.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/repoze/bfg/tests/test_url.py b/repoze/bfg/tests/test_url.py
index 7d7058aea..90118bd34 100644
--- a/repoze/bfg/tests/test_url.py
+++ b/repoze/bfg/tests/test_url.py
@@ -133,14 +133,6 @@ class DummyContext(object):
def __init__(self, next=None):
self.next = next
- def __getitem__(self, name):
- if self.next is None:
- raise KeyError, name
- return self.next
-
class DummyRequest:
application_url = 'http://example.com:5432' # app_url never ends with slash
-class DummySettings:
- def __init__(self, **kw):
- self.__dict__.update(kw)