aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_proxy.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_proxy.py')
-rw-r--r--test/test_proxy.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/test_proxy.py b/test/test_proxy.py
index dfccaaf7..371e5ef7 100644
--- a/test/test_proxy.py
+++ b/test/test_proxy.py
@@ -11,26 +11,6 @@ def test_proxy_error():
assert str(p)
-def test_app_registry():
- ar = proxy.AppRegistry()
- ar.add("foo", "domain", 80)
-
- r = tutils.treq()
- r.host = "domain"
- r.port = 80
- assert ar.get(r)
-
- r.port = 81
- assert not ar.get(r)
-
- r = tutils.treq()
- r.host = "domain2"
- r.port = 80
- assert not ar.get(r)
- r.headers["host"] = ["domain"]
- assert ar.get(r)
-
-
class TestServerConnection:
def setUp(self):
self.d = test.Daemon()