aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_flow_format_compat.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_flow_format_compat.py')
-rw-r--r--test/test_flow_format_compat.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/test_flow_format_compat.py b/test/test_flow_format_compat.py
deleted file mode 100644
index 232f5473..00000000
--- a/test/test_flow_format_compat.py
+++ /dev/null
@@ -1,17 +0,0 @@
-from libmproxy.flow import FlowReader, FlowReadError
-from . import tutils
-
-
-def test_load():
- with open(tutils.test_data.path("data/dumpfile-013"), "rb") as f:
- flow_reader = FlowReader(f)
- flows = list(flow_reader.stream())
- assert len(flows) == 1
- assert flows[0].request.url == "https://example.com/"
-
-
-def test_cannot_convert():
- with open(tutils.test_data.path("data/dumpfile-012"), "rb") as f:
- flow_reader = FlowReader(f)
- with tutils.raises(FlowReadError):
- list(flow_reader.stream())