blob: 20886e0d2fb7e25acd751f72d6408136b81b88d3 (
plain)
1
2
3
4
5
6
7
8
9
|
from rdflib import URIRef
from rdflib.paths import Path
uri_tplt = "http://example.org/%s"
def test_path_div_future():
path = URIRef(uri_tplt % "one") / URIRef(uri_tplt % "other")
assert isinstance(path, Path)
|