mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-27 10:26:23 +00:00
14 lines
456 B
Python
14 lines
456 B
Python
from libpathod import utils
|
|
import tutils
|
|
|
|
|
|
def test_parse_anchor_spec():
|
|
assert utils.parse_anchor_spec("foo=200", {}) == ("foo", "200")
|
|
tutils.raises(utils.AnchorError, utils.parse_anchor_spec, "foobar", {})
|
|
tutils.raises(utils.AnchorError, utils.parse_anchor_spec, "*=200", {})
|
|
tutils.raises(utils.AnchorError, utils.parse_anchor_spec, "foo=bar", {})
|
|
|
|
|
|
def test_data_path():
|
|
tutils.raises(ValueError, utils.data.path, "nonexistent")
|