aboutsummaryrefslogtreecommitdiffstats
path: root/test/pathod/test_utils.py
blob: 28443e249248ca0475be3ac669c419c8d8430f4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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")