summaryrefslogtreecommitdiff
path: root/repoze/bfg/tests/test_url.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-01-15 03:34:10 +0000
committerChris McDonough <chrism@agendaless.com>2009-01-15 03:34:10 +0000
commitd1c4f0339696de88ad43725f6457a8138db7aabf (patch)
tree8407df659e3a0ae5878a38f7270f6e970ed756be /repoze/bfg/tests/test_url.py
parent3e7be735f11f668c8d8044aeffba547a83650948 (diff)
downloadpyramid-d1c4f0339696de88ad43725f6457a8138db7aabf.tar.gz
pyramid-d1c4f0339696de88ad43725f6457a8138db7aabf.tar.bz2
pyramid-d1c4f0339696de88ad43725f6457a8138db7aabf.zip
Clean up unused stuff.
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)