mitmproxy/test/pathod/test_utils.py

21 lines
408 B
Python
Raw Normal View History

2016-02-16 19:59:33 +00:00
from pathod import utils
2012-06-09 03:08:51 +00:00
import tutils
2012-04-28 00:42:03 +00:00
def test_membool():
m = utils.MemBool()
assert not m.v
assert m(1)
assert m.v == 1
assert m(2)
assert m.v == 2
2012-06-09 03:08:51 +00:00
def test_parse_anchor_spec():
2012-06-24 04:38:32 +00:00
assert utils.parse_anchor_spec("foo=200") == ("foo", "200")
assert utils.parse_anchor_spec("foo") is None
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")