mitmproxy/test/test_utils.py

14 lines
456 B
Python
Raw Normal View History

2012-04-28 00:42:03 +00:00
from libpathod import utils
2012-06-09 03:08:51 +00:00
import tutils
2012-04-28 00:42:03 +00:00
2012-06-09 03:08:51 +00:00
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", {})
2012-04-28 00:42:03 +00:00
2012-06-09 03:08:51 +00:00
def test_data_path():
tutils.raises(ValueError, utils.data.path, "nonexistent")