mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
12 lines
274 B
Python
12 lines
274 B
Python
from libpathod import utils
|
|
import tutils
|
|
|
|
|
|
def test_parse_anchor_spec():
|
|
assert utils.parse_anchor_spec("foo=200") == ("foo", "200")
|
|
assert utils.parse_anchor_spec("foo") == None
|
|
|
|
|
|
def test_data_path():
|
|
tutils.raises(ValueError, utils.data.path, "nonexistent")
|