mitmproxy/test/pathod/test_utils.py

18 lines
276 B
Python
Raw Normal View History

import pytest
from pathod import utils
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_data_path():
with pytest.raises(ValueError):
utils.data.path("nonexistent")