aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/mitmproxy/test_examples.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/mitmproxy/test_examples.py b/test/mitmproxy/test_examples.py
index 22d3c425..206a0366 100644
--- a/test/mitmproxy/test_examples.py
+++ b/test/mitmproxy/test_examples.py
@@ -1,6 +1,7 @@
import glob
import json
import os
+import sys
from contextlib import contextmanager
from mitmproxy import script
@@ -133,6 +134,12 @@ def test_redirect_requests():
def test_har_extractor():
+ if sys.version_info >= (3, 0):
+ with tutils.raises("does not work on Python 3"):
+ with example("har_extractor.py -"):
+ pass
+ return
+
with tutils.raises(script.ScriptException):
with example("har_extractor.py"):
pass