aboutsummaryrefslogtreecommitdiffstats
path: root/test/serv.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2012-06-08 10:00:16 +1200
committerAldo Cortesi <aldo@nullcube.com>2012-06-08 10:00:16 +1200
commit7a312546f3185a2cff36a4f422c852b15b182140 (patch)
treeb536fe0be7b90750d12adc8331fba1e226eb3f03 /test/serv.py
parent903038b8de47cbe79fefec410b8f8913d44a5178 (diff)
downloadmitmproxy-7a312546f3185a2cff36a4f422c852b15b182140.tar.gz
mitmproxy-7a312546f3185a2cff36a4f422c852b15b182140.tar.bz2
mitmproxy-7a312546f3185a2cff36a4f422c852b15b182140.zip
Shift mitmproxy test suite over to pathod.
This opens a whole brave new world of testing for mitmproxy.
Diffstat (limited to 'test/serv.py')
-rw-r--r--test/serv.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/serv.py b/test/serv.py
deleted file mode 100644
index a89e60d6..00000000
--- a/test/serv.py
+++ /dev/null
@@ -1,6 +0,0 @@
-from BaseHTTPServer import HTTPServer
-import handler
-
-def make(port):
- server_address = ('127.0.0.1', port)
- return HTTPServer(server_address, handler.TestRequestHandler)