mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-25 09:37:37 +00:00
restructure and move test files
add empty test files to satisfy linter
This commit is contained in:
parent
04748e6f3f
commit
a12c3d3f8e
1
test/mitmproxy/addons/onboardingapp/test_app.py
Normal file
1
test/mitmproxy/addons/onboardingapp/test_app.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/addons/test_eventstore.py
Normal file
1
test/mitmproxy/addons/test_eventstore.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/contentviews/test_base.py
Normal file
1
test/mitmproxy/contentviews/test_base.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/contentviews/test_wbxml.py
Normal file
1
test/mitmproxy/contentviews/test_wbxml.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
@ -1,11 +0,0 @@
|
||||
import os
|
||||
import sys
|
||||
from unittest import mock
|
||||
|
||||
if os.name == "nt":
|
||||
m = mock.Mock()
|
||||
m.__version__ = "1.1.1"
|
||||
m.Widget = mock.Mock
|
||||
m.WidgetWrap = mock.Mock
|
||||
sys.modules['urwid'] = m
|
||||
sys.modules['urwid.util'] = mock.Mock()
|
1
test/mitmproxy/proxy/modes/test_http_proxy.py
Normal file
1
test/mitmproxy/proxy/modes/test_http_proxy.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/proxy/modes/test_reverse_proxy.py
Normal file
1
test/mitmproxy/proxy/modes/test_reverse_proxy.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/proxy/modes/test_socks_proxy.py
Normal file
1
test/mitmproxy/proxy/modes/test_socks_proxy.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/proxy/modes/test_transparent_proxy.py
Normal file
1
test/mitmproxy/proxy/modes/test_transparent_proxy.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/proxy/protocol/test_base.py
Normal file
1
test/mitmproxy/proxy/protocol/test_base.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/proxy/protocol/test_http.py
Normal file
1
test/mitmproxy/proxy/protocol/test_http.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/proxy/protocol/test_http_replay.py
Normal file
1
test/mitmproxy/proxy/protocol/test_http_replay.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/proxy/protocol/test_rawtcp.py
Normal file
1
test/mitmproxy/proxy/protocol/test_rawtcp.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/proxy/test_root_context.py
Normal file
1
test/mitmproxy/proxy/test_root_context.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/test_connections.py
Normal file
1
test/mitmproxy/test_connections.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/test_ctx.py
Normal file
1
test/mitmproxy/test_ctx.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/test_exceptions.py
Normal file
1
test/mitmproxy/test_exceptions.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/test_http.py
Normal file
1
test/mitmproxy/test_http.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/test_io.py
Normal file
1
test/mitmproxy/test_io.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/test_log.py
Normal file
1
test/mitmproxy/test_log.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/test_master.py
Normal file
1
test/mitmproxy/test_master.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/test_options.py
Normal file
1
test/mitmproxy/test_options.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/test_tcp.py
Normal file
1
test/mitmproxy/test_tcp.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/test_websocket.py
Normal file
1
test/mitmproxy/test_websocket.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/mitmproxy/utils/test_bits.py
Normal file
1
test/mitmproxy/utils/test_bits.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/pathod/language/test_exceptions.py
Normal file
1
test/pathod/language/test_exceptions.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/pathod/language/test_message.py
Normal file
1
test/pathod/language/test_message.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/pathod/protocols/test_http.py
Normal file
1
test/pathod/protocols/test_http.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
1
test/pathod/protocols/test_websockets.py
Normal file
1
test/pathod/protocols/test_websockets.py
Normal file
@ -0,0 +1 @@
|
||||
# TODO: write tests
|
Loading…
Reference in New Issue
Block a user