mirror of
https://github.com/zhigang1992/mitmproxy.git
synced 2026-04-23 11:56:52 +08:00
7 lines
170 B
Python
7 lines
170 B
Python
from netlib.http import user_agents
|
|
|
|
|
|
def test_get_shortcut():
|
|
assert user_agents.get_by_shortcut("c")[0] == "chrome"
|
|
assert not user_agents.get_by_shortcut("_")
|