blob: 1a12d3601b3997d06ad8e5f57dd5ea8e28cf4700 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from mitmproxy.tools.console import common
from .. import tutils
@tutils.skip_appveyor
def test_format_flow():
f = tutils.tflow(resp=True)
assert common.format_flow(f, True)
assert common.format_flow(f, True, hostheader=True)
assert common.format_flow(f, True, extended=True)
|