mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
18 lines
276 B
Python
18 lines
276 B
Python
import pytest
|
|
|
|
from pathod import utils
|
|
|
|
|
|
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():
|
|
with pytest.raises(ValueError):
|
|
utils.data.path("nonexistent")
|