aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_utils.py
blob: 72c892f04a705783dc2654b269085ce5a1fe9647 (plain)
1
2
3
4
5
6
7
8
9
10
11
from libpathod import utils
import tutils


def test_parse_anchor_spec():
    assert utils.parse_anchor_spec("foo=200") == ("foo", "200")
    assert utils.parse_anchor_spec("foo") == None


def test_data_path():
    tutils.raises(ValueError, utils.data.path, "nonexistent")