aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_log.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_log.py')
-rw-r--r--test/test_log.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/test/test_log.py b/test/test_log.py
deleted file mode 100644
index 8f38c040..00000000
--- a/test/test_log.py
+++ /dev/null
@@ -1,25 +0,0 @@
-import StringIO
-from libpathod import log
-from netlib.exceptions import TcpDisconnect
-import netlib.tcp
-
-
-class DummyIO(StringIO.StringIO):
-
- def start_log(self, *args, **kwargs):
- pass
-
- def get_log(self, *args, **kwargs):
- return ""
-
-
-def test_disconnect():
- outf = DummyIO()
- rw = DummyIO()
- l = log.ConnectionLogger(outf, False, rw, rw)
- try:
- with l.ctx() as lg:
- lg("Test")
- except TcpDisconnect:
- pass
- assert "Test" in outf.getvalue()