summaryrefslogtreecommitdiffstats
path: root/tests/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/client.py')
-rw-r--r--tests/client.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/client.py b/tests/client.py
deleted file mode 100644
index 39dad61..0000000
--- a/tests/client.py
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright (C) 2015 Custodia Project Contributors - see LICENSE file
-
-try:
- # pylint: disable=import-error
- from httplib import HTTPConnection
-except ImportError:
- # pylint: disable=import-error,no-name-in-module
- from http.client import HTTPConnection
-import socket
-
-
-class LocalConnection(HTTPConnection):
-
- def __init__(self, path):
- HTTPConnection.__init__(self, 'localhost', 0)
- self.unix_socket = path
-
- def connect(self):
- s = socket.socket(family=socket.AF_UNIX)
- s.connect(self.unix_socket)
- self.sock = s