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.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/test_proxy.py b/test/test_proxy.py
index 9d7239dd..5fab282c 100644
--- a/test/test_proxy.py
+++ b/test/test_proxy.py
@@ -60,17 +60,6 @@ def test_read_http_body():
assert len(proxy.read_http_body(s, h, True, 100)) == 7
-class TestFileLike:
- def test_wrap(self):
- s = cStringIO.StringIO("foobar\nfoobar")
- s = proxy.FileLike(s)
- s.flush()
- assert s.readline() == "foobar\n"
- assert s.readline() == "foobar"
- # Test __getattr__
- assert s.isatty
-
-
class TestProxyError:
def test_simple(self):
p = proxy.ProxyError(111, "msg")