blob: 5cd0fd3d3dc88526eaab7fa58920e93fbf980939 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from libpathod import utils
import tutils
def test_parse_anchor_spec():
assert utils.parse_anchor_spec("foo=200", {}) == ("foo", "200")
tutils.raises(utils.AnchorError, utils.parse_anchor_spec, "foobar", {})
tutils.raises(utils.AnchorError, utils.parse_anchor_spec, "*=200", {})
tutils.raises(utils.AnchorError, utils.parse_anchor_spec, "foo=bar", {})
def test_data_path():
tutils.raises(ValueError, utils.data.path, "nonexistent")
|