blob: 779c522ae62ecedcc76b86180ff76d8a4896b73e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
from pathlib import Path
from rdflib import URIRef
from rdflib.graph import Graph
TEST_DIR = Path(__file__).parent
TEST_DATA_DIR = TEST_DIR / "data"
alice_uri = URIRef("http://example.org/alice")
bob_uri = URIRef("http://example.org/bob")
michel = URIRef("urn:example:michel")
tarek = URIRef("urn:example:tarek")
bob = URIRef("urn:example:bob")
likes = URIRef("urn:example:likes")
hates = URIRef("urn:example:hates")
pizza = URIRef("urn:example:pizza")
cheese = URIRef("urn:example:cheese")
context0 = URIRef("urn:example:context-0")
context1 = URIRef("urn:example:context-1")
context2 = URIRef("urn:example:context-2")
simple_triple_graph = Graph().add(
(
URIRef("http://example.org/subject"),
URIRef("http://example.org/predicate"),
URIRef("http://example.org/object"),
)
)
"""
A simple graph with a single triple. This is equivalent to the following RDF files:
* ``test/data/variants/simple_triple.nq``
* ``test/data/variants/simple_triple.nt``
* ``test/data/variants/simple_triple.ttl``
* ``test/data/variants/simple_triple.xml``
"""
|