summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-08-16 09:29:53 +0200
committerChris McDonough <chrism@plope.com>2013-08-16 09:29:53 +0200
commit0a973db36f6fa79b931b63fd52aac76432ef9879 (patch)
tree81c4b802a12412638423658496789b573751e2fc
parentbedddda9e128bd4497ddfa1122ea06288ee1c58f (diff)
downloadpyramid-0a973db36f6fa79b931b63fd52aac76432ef9879.tar.gz
pyramid-0a973db36f6fa79b931b63fd52aac76432ef9879.tar.bz2
pyramid-0a973db36f6fa79b931b63fd52aac76432ef9879.zip
remove dead code
-rw-r--r--pyramid/tests/test_config/test_init.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/pyramid/tests/test_config/test_init.py b/pyramid/tests/test_config/test_init.py
index 7c2880a18..b8cbbd676 100644
--- a/pyramid/tests/test_config/test_init.py
+++ b/pyramid/tests/test_config/test_init.py
@@ -1955,12 +1955,6 @@ class DummyRequest:
self.params = {}
self.cookies = {}
-class DummyResponse:
- status = '200 OK'
- headerlist = ()
- app_iter = ()
- body = ''
-
class DummyThreadLocalManager(object):
pushed = None
popped = False
@@ -1992,11 +1986,6 @@ class DummyRegistry(object):
def queryUtility(self, *arg, **kw):
return self.util
-from pyramid.interfaces import IResponse
-@implementer(IResponse)
-class DummyResponse(object):
- pass
-
from zope.interface import Interface
class IOther(Interface):
pass