We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17cffe2 commit d61c550Copy full SHA for d61c550
test/test_namespace/test_namespace.py
@@ -264,20 +264,6 @@ def test_contains_method(self):
264
ref = URIRef("http://www.w3.org/2002/07/owl#real")
265
assert ref in OWL, "OWL does not include owl:real"
266
267
- def test_expand_curie(self) -> None:
268
- g = Graph()
269
-
270
- assert g.namespace_manager.expand_curie("rdf:type") == URIRef(
271
- "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
272
- )
273
274
- assert g.namespace_manager.expand_curie("rdf:type") == RDF.type
275
276
- g.bind("ex", Namespace("urn:example:"))
277
278
- assert g.namespace_manager.expand_curie("ex:tarek") == URIRef(
279
- "urn:example:tarek"
280
281
282
def test_expand_curie_exception_messages(self) -> None:
283
g = Graph()
0 commit comments