mitmproxy/test/pathod/test_utils.py
2016-06-17 15:06:01 +02:00

17 lines
270 B
Python

from pathod import utils
from . import tutils
def test_membool():
m = utils.MemBool()
assert not m.v
assert m(1)
assert m.v == 1
assert m(2)
assert m.v == 2
def test_data_path():
tutils.raises(ValueError, utils.data.path, "nonexistent")