mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
8 lines
175 B
Python
8 lines
175 B
Python
|
from netlib import http_uastrings
|
||
|
|
||
|
|
||
|
def test_get_shortcut():
|
||
|
assert http_uastrings.get_by_shortcut("c")[0] == "chrome"
|
||
|
assert not http_uastrings.get_by_shortcut("_")
|
||
|
|